AWS::CodeBuild::Project EnvironmentVariable - AWS CloudFormation (original) (raw)

EnvironmentVariable is a property of the AWS CodeBuild Project Environment property type that specifies the name and value of an environment variable for an AWS CodeBuild project environment. When you use the environment to run a build, these variables are available for your builds to use. EnvironmentVariable contains a list of EnvironmentVariable property types.

Syntax

To declare this entity in your AWS CloudFormation template, use the following syntax:

JSON

{
  "Name" : String,
  "Type" : String,
  "Value" : String
}

YAML

  Name: String
  Type: String
  Value: String

Properties

Name

The name or key of the environment variable.

Required: Yes

Type: String

Minimum: 1

Update requires: No interruption

Type

The type of environment variable. Valid values include:

Required: No

Type: String

Allowed values: PLAINTEXT | PARAMETER_STORE | SECRETS_MANAGER

Update requires: No interruption

Value

The value of the environment variable.

Important

We strongly discourage the use of PLAINTEXT environment variables to store sensitive values, especially AWS secret key IDs.PLAINTEXT environment variables can be displayed in plain text using the AWS CodeBuild console and the AWS CLI. For sensitive values, we recommend you use an environment variable of type PARAMETER_STORE orSECRETS_MANAGER.

Required: Yes

Type: String

Update requires: No interruption

Examples

JSON

{
  "Project": {
    "Environment": {
      "EnvironmentVariables": [
        {
          "Name": "MY_VAR_1",
          "Type": "PLAINTEXT",
          "Value": "VAR_1_VALUE"
        },
        {
          "Name": "MY_VAR_2",
          "Type": "PLAINTEXT",
          "Value": "VAR_2_VALUE"
        }
      ]
    }
  }
}

YAML

Project:
  Type: AWS::CodeBuild::Project
  Properties:
    Environment:
      EnvironmentVariables:
        - Name: MY_VAR_1
          Type: PLAINTEXT
          Value: VAR_1_VALUE
        - Name: MY_VAR_2
          Type: PLAINTEXT
          Value: VAR_2_VALUE