github.com/swisspost/terratest@v0.0.0-20230214120104-7ec6de2e1ae0/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  variable "region" {
    14    description = "The AWS region to deploy to"
    15    type        = string
    16  }
    17  
    18  variable "function_name" {
    19    description = "The name of the function to provision"
    20  }
    21  # ---------------------------------------------------------------------------------------------------------------------
    22  # OPTIONAL PARAMETERS
    23  # These parameters have reasonable defaults.
    24  # ---------------------------------------------------------------------------------------------------------------------