18 lines
309 B
HCL
18 lines
309 B
HCL
variable "AWS_REGION" {
|
|
default = "us-east-1"
|
|
}
|
|
|
|
variable "s3bucketstate" {
|
|
type = string
|
|
default = "slopedme-tf-state"
|
|
}
|
|
|
|
variable "s3bucketlogs" {
|
|
type = string
|
|
default = "slopedme-tf-logs"
|
|
}
|
|
|
|
variable "dynamodb-terraform-table" {
|
|
type = string
|
|
default = "terraform-dynamodb-table"
|
|
}
|