Created
May 31, 2022 05:28
-
-
Save cromyhector/2fe3149f8a9075285e8d73c1ea9b9a7d to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
variable "region" { | |
description = "The region where environment is going to be deployed" | |
type = string | |
default = "us-east-1" | |
} | |
variable "aws_access_key" { | |
type = string | |
sensitive = true | |
} | |
variable "aws_secret_key" { | |
type = string | |
sensitive = true | |
} | |
# VPC variables | |
variable "vpc_cidr" { | |
description = "CIDR range for VPC" | |
type = string | |
default = "10.0.0.0/16" | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment