12345678910111213141516 |
- variable "tags" {
- type = map(any)
- default = {}
- }
- # ----------------------------------
- # Below this line are variables inherited from higher levels, so they
- # do not need to be explicitly passed to this module.
- variable "standard_tags" { type = map(any) }
- variable "account_list" { type = list(any) }
- variable "responsible_accounts" { type = map(list(string)) }
- variable "aws_account_id" { type = string }
- variable "aws_partition" { type = string }
- variable "aws_region" { type = string }
- variable "environment" { type = string }
- variable "key_pairs" { type = map(any) }
|