vars.tf 1.3 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849
  1. variable "allow_any_to_endpoints" {
  2. description = "Whether to accept the transit gateway sharing invitation. Only done once per account."
  3. type = bool
  4. default = false
  5. }
  6. variable "accept_tgw_invitation" {
  7. description = "Whether to accept the transit gateway sharing invitation. Only done once per account."
  8. type = bool
  9. }
  10. variable "tgw_id" {
  11. description = "Transit Gateway ID"
  12. type = string
  13. }
  14. variable "enable_nat_gateway" {
  15. description = "Whether to add a NAT gateway to the VPC"
  16. type = bool
  17. default = false
  18. }
  19. variable "tgw_share_arn" {
  20. description = "The ARN of the share to accept."
  21. type = string
  22. default = ""
  23. }
  24. variable "vpc_info" {
  25. description = "A map of information about the VPC to create. Must contain `name` and `cidr`."
  26. type = map
  27. }
  28. variable "tags" {
  29. description = "Tags to add to the resource (in addition to global standard tags)"
  30. type = map
  31. default = { }
  32. }
  33. # Inherited
  34. variable "account_name" { type = string }
  35. variable "trusted_ips" { type = list(string) }
  36. variable "dns_servers" { type = list(string) }
  37. variable "dns_info" { type = map }
  38. variable "cidr_map" { type = map }
  39. variable "standard_tags" { type = map }
  40. variable "aws_region" { type = string }
  41. variable "aws_account_id" { type = string }
  42. variable "aws_partition" { type = string }