-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
allow supplying Customer Managed Keys that this role can use (#3)
- Loading branch information
Showing
5 changed files
with
56 additions
and
26 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,21 +1,26 @@ | ||
variable "product_domain" { | ||
type = "string" | ||
type = string | ||
description = "product domain of the role owner" | ||
} | ||
|
||
variable "vpc_id" { | ||
type = "string" | ||
type = string | ||
description = "the VPC ID where the security groups will be put. Use vpc_id output from the vpc terraform module" | ||
} | ||
|
||
variable "environment" { | ||
type = "string" | ||
type = string | ||
description = "the environment where the role and security groups are put" | ||
} | ||
|
||
variable "additional_tags" { | ||
type = "map" | ||
type = map | ||
description = "additional tags for the shared resources" | ||
default = {} | ||
} | ||
|
||
variable "key_arns" { | ||
type = list | ||
description = "List of all AWS KMS Customer Managed Key ARNs that this role can use" | ||
default = [] | ||
} |