Files
talks/2023-03-15-wgtn-ansible-meetup/0-deploy-demo-infra/provider-variables.tf

16 lines
301 B
HCL

# AWS connection & authentication
variable "aws_access_key" {
type = string
description = "AWS access key"
}
variable "aws_secret_key" {
type = string
description = "AWS secret key"
}
variable "aws_region" {
type = string
description = "AWS region"
}