vars.tf 997 B

12345678910111213141516171819202122232425262728293031323334353637383940
  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(any)
  27. }
  28. variable "tags" {
  29. description = "Tags to add to the resource (in addition to global standard tags)"
  30. type = map(any)
  31. default = {}
  32. }
  33. # Inherited