File tree Expand file tree Collapse file tree 2 files changed +24
-4
lines changed Expand file tree Collapse file tree 2 files changed +24
-4
lines changed Original file line number Diff line number Diff line change @@ -160,6 +160,16 @@ locals {
160
160
key = " tf_bastion"
161
161
value = " ${ local . project } -tf-bastion-bootstrap"
162
162
}
163
+ gsa_auth_development_key = {
164
+ encrypted = false
165
+ key = " gsa_auth_development_key"
166
+ value = var.gsa_auth_development_key
167
+ }
168
+ gsa_auth_production_key = {
169
+ encrypted = false
170
+ key = " gsa_auth_production_key"
171
+ value = var.gsa_auth_production_key
172
+ }
163
173
hash_salt = {
164
174
encrypted = false
165
175
key = " hash_salt"
@@ -262,6 +272,8 @@ locals {
262
272
263
273
space = local.production_space
264
274
275
+ stopped = true
276
+
265
277
# # Templates take templated files and fill them in with sensitive data.
266
278
templates = []
267
279
}
@@ -272,7 +284,3 @@ locals {
272
284
# # Map of the 'all' environement and the current workspace settings.
273
285
env = merge (try (local. envs . all , {}), try (local. envs . bootstrap , {}))
274
286
}
275
-
276
- output "name" {
277
- value = local. env . passwords
278
- }
Original file line number Diff line number Diff line change @@ -33,6 +33,18 @@ variable "github_token" {
33
33
sensitive = true
34
34
}
35
35
36
+ variable "gsa_auth_development_key" {
37
+ description = " The GSA Auth key for development environments."
38
+ type = string
39
+ sensitive = true
40
+ }
41
+
42
+ variable "gsa_auth_production_key" {
43
+ description = " The GSA Auth key for production environments."
44
+ type = string
45
+ sensitive = true
46
+ }
47
+
36
48
variable "mtls_port" {
37
49
description = " The default port to direct traffic to. Envoy proxy listens on 61443 and redirects to 8080, which the application should listen on."
38
50
type = number
You can’t perform that action at this time.
0 commit comments