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:
PARAMETER_STORE
: An environment variable stored in Systems Manager Parameter Store. For environment variables of this type, specify the name of the parameter as thevalue
of the EnvironmentVariable. The parameter value will be substituted for the name at runtime. You can also define Parameter Store environment variables in the buildspec. To learn how to do so, see env/parameter-store in the_AWS CodeBuild User Guide_.PLAINTEXT
: An environment variable in plain text format. This is the default value.SECRETS_MANAGER
: An environment variable stored in AWS Secrets Manager. For environment variables of this type, specify the name of the secret as thevalue
of the EnvironmentVariable. The secret value will be substituted for the name at runtime. You can also define AWS Secrets Manager environment variables in the buildspec. To learn how to do so, seeenv/secrets-manager in the_AWS CodeBuild User Guide_.
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