Skip to content

Instantly share code, notes, and snippets.

@cromyhector
Created May 31, 2022 05:28
Show Gist options
  • Save cromyhector/2fe3149f8a9075285e8d73c1ea9b9a7d to your computer and use it in GitHub Desktop.
Save cromyhector/2fe3149f8a9075285e8d73c1ea9b9a7d to your computer and use it in GitHub Desktop.
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