You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
feat: add a new setting for the FedRAMP environment
I've added a new variable to indicate that the pool is connecting to a Spacelift FedRAMP account. When this is enabled, a different launcher binary compatible with the FedRAMP environment is downloaded.
**NOTE:** if you don't set the `is_fedramp` variable to `true` and attempt to connect to the Spacelift FedRAMP environment the launcher will exit on startup without connecting to Spacelift.
99
+
100
+
### Other Examples
101
+
59
102
For more examples covering specific use cases, please see the [examples directory](./examples/):
Copy file name to clipboardExpand all lines: variables.tf
+6Lines changed: 6 additions & 0 deletions
Original file line number
Diff line number
Diff line change
@@ -84,6 +84,12 @@ variable "domain_name" {
84
84
default="spacelift.io"
85
85
}
86
86
87
+
variable"is_fedramp" {
88
+
type=bool
89
+
description="Indicates whether the worker pool is connecting to the FedRAMP Spacelift environment. When true a FedRAMP-specific version of the launcher binary will be downloaded."
90
+
default=false
91
+
}
92
+
87
93
variable"ec2_instance_type" {
88
94
type=string
89
95
description="EC2 instance type for the workers. If an arm64-based AMI is used, this must be an arm64-based instance type."
0 commit comments