vars.tf 623 B

1234567891011121314151617
  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 "cloudtrail_key_arn" { type = string }
  7. variable "aws_waf_logs_hec_token" { type = string }
  8. variable "hec_pub_ack" { type = string }
  9. variable "standard_tags" { type = map }
  10. variable "account_name" { type = string }
  11. variable "aws_account_id" { type = string }
  12. variable "aws_partition_alias" { type = string }
  13. variable "environment" { type = string }
  14. variable "account_map" { type = map }
  15. variable "aws_region" { type = string }
  16. variable "aws_partition" { type = string }