Skip to content

Commit

Permalink
Use strings in cloudbuild (#198)
Browse files Browse the repository at this point in the history
  • Loading branch information
AlCutter authored Feb 27, 2024
1 parent 745a65f commit 2629209
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
6 changes: 3 additions & 3 deletions release/cloudbuild_ci.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -136,7 +136,7 @@ steps:
\"bucket\": \"${_LOG_NAME}\",
\"kmsKeyName\": \"ft-log-ci\",
\"kmsKeyRing\": \"firmware-release-ci\",
\"kmsKeyVersion\": ${_KEY_VERSION},
\"kmsKeyVersion\": \"${_KEY_VERSION}\",
\"kmsKeyLocation\": \"global\",
\"noteKeyName\": \"transparency.dev-aw-ftlog-ci-${_KEY_VERSION}\",
\"checkpointCacheControl\": \"${_CHECKPOINT_CACHE}\"
Expand All @@ -154,7 +154,7 @@ steps:
"bucket": "${_LOG_NAME}",
"kmsKeyName": "ft-log-ci",
"kmsKeyRing": "firmware-release-ci",
"kmsKeyVersion": ${_KEY_VERSION},
"kmsKeyVersion": "${_KEY_VERSION}",
"kmsKeyLocation": "global",
"noteKeyName": "transparency.dev-aw-ftlog-ci-${_KEY_VERSION}",
"checkpointCacheControl": "${_CHECKPOINT_CACHE}"
Expand All @@ -175,7 +175,7 @@ substitutions:
# Log-related.
_ENTRIES_DIR: firmware-log-sequence
# This must correspond with the trailing number on the _FIRMWARE_BUCKET, _ORIGIN, _LOG_NAME values.
_KEY_VERSION: 2
_KEY_VERSION: '2'
_ORIGIN: transparency.dev/armored-witness/firmware_transparency/ci/2
_LOG_NAME: armored-witness-firmware-log-ci-2
_LOG_PUBLIC_KEY: transparency.dev-aw-ftlog-ci-2+f77c6276+AZXqiaARpwF4MoNOxx46kuiIRjrML0PDTm+c7BLaAMt6
Expand Down
4 changes: 2 additions & 2 deletions release/cloudbuild_withsecure_signature.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,7 @@ steps:
"bucket": "${_LOG_NAME}",
"kmsKeyName": "ft-log-ci",
"kmsKeyRing": "firmware-release-ci",
"kmsKeyVersion": ${_KEY_VERSION},
"kmsKeyVersion": "${_KEY_VERSION}",
"kmsKeyLocation": "global",
"noteKeyName": "transparency.dev-aw-ftlog-ci",
"checkpointCacheControl": "${_CHECKPOINT_CACHE}"
Expand All @@ -78,7 +78,7 @@ steps:
"bucket": "${_LOG_NAME}",
"kmsKeyName": "ft-log-ci",
"kmsKeyRing": "firmware-release-ci",
"kmsKeyVersion": ${_KEY_VERSION},
"kmsKeyVersion": "${_KEY_VERSION}",
"kmsKeyLocation": "global",
"noteKeyName": "transparency.dev-aw-ftlog-ci",
"checkpointCacheControl": "${_CHECKPOINT_CACHE}"
Expand Down

0 comments on commit 2629209

Please sign in to comment.