16 lines
305 B
Terraform
16 lines
305 B
Terraform
variable "aws_access_key" {}
|
|
variable "aws_secret_key" {}
|
|
variable "aws_region" {}
|
|
|
|
provider "aws" {
|
|
access_key = var.aws_access_key
|
|
secret_key = var.aws_secret_key
|
|
region = var.aws_region
|
|
version = ">= 2.28.1"
|
|
}
|
|
|
|
variable "default-tags" {}
|
|
variable "vpc-cidr" {
|
|
default = "172.16.0.0/16"
|
|
}
|