mirror of
https://github.com/mr-vercetti/tf-aws-demo.git
synced 2025-01-18 19:35:34 +01:00
24 lines
341 B
Terraform
24 lines
341 B
Terraform
|
# general
|
||
|
variable "REGION" {
|
||
|
type = string
|
||
|
}
|
||
|
|
||
|
variable "REGION_REPLICA" {
|
||
|
type = string
|
||
|
}
|
||
|
|
||
|
variable "S3_STATE_BUCKET_NAME" {
|
||
|
type = string
|
||
|
}
|
||
|
|
||
|
variable "S3_STATE_BUCKET_REPLICA_NAME" {
|
||
|
type = string
|
||
|
}
|
||
|
|
||
|
variable "STATE_KMS_KEY_ALIAS" {
|
||
|
type = string
|
||
|
}
|
||
|
|
||
|
variable "STATE_DYNAMODB_TABLE_NAME" {
|
||
|
type = string
|
||
|
}
|