Files
terraform/aws/aws_simple/variables.tf
gregory hendrickson 64cf0d8937 mv AWS -> aws/aws_simple
2023-11-16 13:10:07 -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 = ""
}