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

     1  # ---------------------------------------------------------------------------------------------------------------------
     2  # ENVIRONMENT VARIABLES
     3  # Define these secrets as environment variables
     4  # ---------------------------------------------------------------------------------------------------------------------
     5  
     6  # AWS_ACCESS_KEY_ID
     7  # AWS_SECRET_ACCESS_KEY
     8  
     9  # ---------------------------------------------------------------------------------------------------------------------
    10  # REQUIRED PARAMETERS
    11  # You must provide a value for each of these parameters.
    12  # ---------------------------------------------------------------------------------------------------------------------
    13  
    14  
    15  variable "function_name" {
    16    description = "The name of the function to provision"
    17  }
    18  # ---------------------------------------------------------------------------------------------------------------------
    19  # OPTIONAL PARAMETERS
    20  # These parameters have reasonable defaults.
    21  # ---------------------------------------------------------------------------------------------------------------------