supported_regions.tf 212 B

12345
  1. variable "supported_regions" {
  2. description = "The list of regions to monitor. Each additional region will increase costs slightly."
  3. type = list(string)
  4. default = [ "us-east-1", "us-east-2", "us-west-1" ]
  5. }