github.com/terraform-modules-krish/terratest@v0.29.0/examples/terraform-aws-dynamodb-example/variables.tf (about)

     1  # ---------------------------------------------------------------------------------------------------------------------
     2  # OPTIONAL PARAMETERS
     3  # These parameters have reasonable defaults.
     4  # ---------------------------------------------------------------------------------------------------------------------
     5  
     6  variable "table_name" {
     7    description = "The name to set for the dynamoDB table."
     8    type        = string
     9    default     = "terratest-example"
    10  }
    11