mirror of
https://github.com/ghndrx/terraform.git
synced 2026-02-10 06:45:01 +00:00
17 lines
219 B
HCL
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 = ""
|
|
}
|