Skip to content

Commit d70e59c

Browse files
authored
Add default values for vault-operator module vars (#522)
1 parent bd64ab8 commit d70e59c

File tree

1 file changed

+10
-2
lines changed

1 file changed

+10
-2
lines changed

modules/common/vault-secrets-operator-setup/variables.tf

Lines changed: 10 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,9 +13,17 @@ variable "lambda_sns_forwarder_enabled" {
1313
type = bool
1414
default = false
1515
}
16-
variable "lambda_sns_forwarder_iam_principal_arn" {}
16+
variable "lambda_sns_forwarder_iam_principal_arn" {
17+
type = string
18+
default = ""
19+
description = "IAM principal ARN for the lambda SNS forwarder"
20+
}
1721

18-
variable "account_id" {}
22+
variable "account_id" {
23+
type = string
24+
default = ""
25+
description = "AWS account ID"
26+
}
1927

2028
locals {
2129
account_region_name = lower("${var.account}-${var.region}-${var.name}")

0 commit comments

Comments
 (0)