Files
terraform/aws/aws_asg/variables.tf
2023-11-17 17:08:59 -08:00

17 lines
219 B
HCL

# Define variables
variable "aws_region" {
type = string
default = "us-west-2"
}
variable "aws_access_key" {
type = string
default = ""
}
variable "aws_secret_key" {
type = string
default = ""
}