18 lines
344 B
HCL
18 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"
|
|
}
|