Skip to content

Instantly share code, notes, and snippets.

@theCaptN21
Created February 25, 2023 15:42
Show Gist options
  • Save theCaptN21/d0e5a92e4da3d1f99cc8104855de1ae5 to your computer and use it in GitHub Desktop.
Save theCaptN21/d0e5a92e4da3d1f99cc8104855de1ae5 to your computer and use it in GitHub Desktop.
ECS variables
# --- variables.tf ---
variable "private_cidrs" {
type = string
default = "10.0.1.0/24"
}
variable "public_cidrs" {
type = string
default = "10.0.101.0/24"
}
variable "vpc_cidr" {
description = "CIDR block for new vpc"
type = string
default = "10.0.0.0/16"
}
variable "region" {
type = string
default = "us-east-1"
}
variable "aws_access_key" {}
variable "aws_secret_key" {}
variable "availability_zones" {
type = string
default = "us-east-1a"
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment