vars.tf 518 B

12345678910111213141516
  1. variable "name" { type = string }
  2. variable "alias" { type = string }
  3. variable "description" { type = string}
  4. variable "tags" { type = map}
  5. variable "key_admin_arns" { type = list }
  6. variable "key_user_arns" { type = list }
  7. variable "key_attacher_arns" { type = list }
  8. variable "standard_tags" { type = map }
  9. variable "aws_account_id" { type = string }
  10. variable "aws_partition" { type = string }
  11. variable "is_legacy" {
  12. description = "Is this in our legacy AWS commercial account?"
  13. type = bool
  14. default = false
  15. }