Skip to content

Commit

Permalink
Add outputs
Browse files Browse the repository at this point in the history
  • Loading branch information
Luca Prete committed Aug 9, 2024
1 parent 4a6293b commit f761de7
Showing 1 changed file with 17 additions and 0 deletions.
17 changes: 17 additions & 0 deletions fast/stages/2-security/outputs.tf
Original file line number Diff line number Diff line change
Expand Up @@ -33,8 +33,25 @@ locals {
]
])
)
cas_ids = {
dev = {
for k, v in module.dev-sec-cas
: k => {
ca_pool_id = v.ca_pool_id
ca_ids = v.ca_ids
}
}
prod = {
for k, v in module.prod-sec-cas
: k => {
ca_pool_id = v.ca_pool_id
ca_ids = v.ca_ids
}
}
}
output_kms_keys = { for k in local._output_kms_keys : k.key => k.id }
tfvars = {
cas_ids = local.cas_ids
kms_keys = local.output_kms_keys
}
}
Expand Down

0 comments on commit f761de7

Please sign in to comment.