123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051 |
- variable "cidr" {
- description = "The CIDR Block for the VPC"
- type = string
- }
- variable "name" {
- description = "The name for the VPC"
- type = string
- }
- variable "tags" {
- description = "Tags to add to the resource (in addition to global standard tags)"
- type = map
- default = { }
- }
- # ----------------------------------
- # Below this line are variables inherited from higher levels, so they
- # do not need to be explicitly passed to this module.
- variable "standard_tags" {
- type = map
- }
- variable "inside_domain" {
- type = string
- }
- variable "aws_region" {
- type = string
- }
- #variable "environment_vars" {
- # description = "Environment Vars"
- # type = map
- #}
- #
- #variable "partition_vars" {
- # description = "Partition Vars"
- # type = map
- #}
- #
- #variable "region_vars" {
- # description = "Region Vars"
- # type = map
- #}
- #
- #variable "account_vars" {
- # description = "Account Vars"
- # type = map
- #}
|