InfrastructureS3ToDynamoDBL.../variables.tf
2023-07-11 18:45:59 +03:00

19 lines
344 B
HCL

variable "regoin" {
description = "AWS regoin"
default = "us-east-1"
}
variable "s3_bucket" {
description = "value of s3 bucket name"
default = "amdocs-example-project"
}
variable "project" {
description = "value of project name"
default = "s3_to_dynamodb"
}
variable "dynamodb_table_name" {
default = "example_dynamo_table"
}