Skip to content

Commit

Permalink
Fix environment variable declaration in the release script (#828)
Browse files Browse the repository at this point in the history
  • Loading branch information
klivan committed Jul 29, 2024
1 parent a53d01e commit 78b9afb
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions aws/logs_monitoring/tools/publish_prod.sh
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@ aws-vault exec sso-govcloud-us1-fed-engineering -- aws sts get-caller-identity
aws-vault exec sso-prod-engineering -- aws sts get-caller-identity

log_info "Publishing layers to GovCloud AWS regions"
LAYER_VERSION="${LAYER_VERSION}" FORWARDER_VERSION"=${FORWARDER_VERSION}" aws-vault exec sso-govcloud-us1-fed-engineering -- ./tools/publish_layers.sh
LAYER_VERSION="${LAYER_VERSION}" FORWARDER_VERSION="${FORWARDER_VERSION}" aws-vault exec sso-govcloud-us1-fed-engineering -- ./tools/publish_layers.sh

log_info "Publishing layers to commercial AWS regions"
LAYER_VERSION="${LAYER_VERSION}" FORWARDER_VERSION"=${FORWARDER_VERSION}" aws-vault exec sso-prod-engineering -- ./tools/publish_layers.sh
LAYER_VERSION="${LAYER_VERSION}" FORWARDER_VERSION="${FORWARDER_VERSION}" aws-vault exec sso-prod-engineering -- ./tools/publish_layers.sh

0 comments on commit 78b9afb

Please sign in to comment.