vars.tf 515 B

12345678910111213
  1. variable "tags" {
  2. description = "Tags to add to the resource (in addition to global standard tags)"
  3. type = map
  4. default = { }
  5. }
  6. variable "standard_tags" { type = map }
  7. variable "environment" { type = string }
  8. variable "aws_partition" { type = string }
  9. variable "aws_region" { type = string }
  10. variable "aws_partition_alias" { type = string }
  11. variable "aws_account_id" { type = string }
  12. variable "common_services_account" { type = string }
  13. variable "responsible_accounts" { type = map(list(string)) }