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

20 lines
348 B
HCL

variable "role_name" {
type = string
default = "amdocs-example-role"
}
variable "account_id" {
type = string
default = "123456789012"
}
variable "s3_bucket" {
type = string
default = "amdocs-example-bucket"
}
variable "dynamodb_table_name" {
description = "The name of the table"
type = string
default = "example"
}