We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 2a47c6e + 48c5d7d commit 938b208Copy full SHA for 938b208
main.tf
@@ -1,7 +1,7 @@
1
data "aws_region" "current" {}
2
3
locals {
4
- secret_names = concat(var.secret_names, [
+ global_secrets = concat(var.secret_names, [
5
"DD_API_KEY",
6
])
7
@@ -118,6 +118,6 @@ module "ssm" {
118
source = "hazelops/ssm-secrets/aws"
119
version = "~> 1.0"
120
env = var.env
121
- app_name = var.app_name
122
- names = var.enabled ? local.secret_names : []
+ app_name = "global"
+ names = var.enabled ? local.global_secrets : []
123
}
0 commit comments