Skip to content

Instantly share code, notes, and snippets.

@AnqiZhou26
Last active December 3, 2022 01:01
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save AnqiZhou26/b77aba69d33593b038f9c062926ea9aa to your computer and use it in GitHub Desktop.
Save AnqiZhou26/b77aba69d33593b038f9c062926ea9aa to your computer and use it in GitHub Desktop.
variable "aws_access_key" {
description = "AWS access key"
type = string
}
variable "aws_secret_key" {
description = "AWS secret key"
type = string
}
variable "region" {
description = "The aws region"
type = string
default = "us-east-1"
}
variable "availability_zones_count" {
description = "The number of AZs."
type = number
default = 2
}
variable "project" {
description = "Name of the project deployment."
type = string
}
variable "vpc_cidr" {
description = "The CIDR block for the VPC. Default value is a valid CIDR, but not acceptable by AWS and should be overridden"
type = string
default = "10.0.0.0/16"
}
variable "subnet_cidr_bits" {
description = "The number of subnet bits for the CIDR. For example, specifying a value 8 for this parameter will create a CIDR with a mask of /24."
type = number
default = 8
}
variable "tags" {
description = "A map of tags to add to all resources"
type = map(string)
default = {
"Project" = "VideoGenerator"
"Environment" = "Development"
"Owner" = "Anqi Zhou"
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment