vars.tf 827 B

12345678910111213141516171819202122232425262728293031323334353637383940
  1. variable elb_attachments {
  2. type = list
  3. }
  4. variable "prefix" {
  5. description = "Prefix for Instance Names"
  6. type = string
  7. }
  8. variable "azs" {
  9. type = list(string)
  10. }
  11. variable "public_subnets" {
  12. type = list(string)
  13. }
  14. variable "vpc_id" {
  15. type = string
  16. }
  17. variable "vpc_cidr" {
  18. type = string
  19. }
  20. variable "tags" {
  21. description = "Tags to add to the resource (in addition to global standard tags)"
  22. type = map
  23. default = { }
  24. }
  25. variable "cidr_map" { type = map }
  26. variable "dns_info" { type = map }
  27. variable "standard_tags" { type = map }
  28. variable "environment" { type = string }
  29. variable "aws_region" { type = string }
  30. variable "aws_account_id" { type = string }
  31. variable "aws_partition" { type = string }
  32. variable "aws_partition_alias" { type = string }
  33. variable "common_services_account" { type = string }