vars.tf 881 B

1234567891011121314151617181920212223242526272829303132333435363738394041424344
  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 "private_subnets" {
  15. type = list(string)
  16. }
  17. variable "vpc_id" {
  18. type = string
  19. }
  20. variable "vpc_cidr" {
  21. type = string
  22. }
  23. variable "tags" {
  24. description = "Tags to add to the resource (in addition to global standard tags)"
  25. type = map
  26. default = { }
  27. }
  28. variable "cidr_map" { type = map }
  29. variable "dns_info" { type = map }
  30. variable "standard_tags" { type = map }
  31. variable "environment" { type = string }
  32. variable "aws_region" { type = string }
  33. variable "aws_account_id" { type = string }
  34. variable "aws_partition" { type = string }
  35. variable "aws_partition_alias" { type = string }
  36. variable "common_services_account" { type = string }