code-dumps/tf-modulised/vpc-subnets/provider.tf

13 lines
253 B
Terraform
Raw Normal View History

2020-06-18 10:30:49 +08:00
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"
}
2020-08-02 17:44:28 +08:00
variable "default-tags" {}