Skip to content

Commit 3baefdf

Browse files
committed
Refactor aws-assume-role template parameters to remove quotes and clean up debug output for BUILD_ROLE
1 parent 7659100 commit 3baefdf

1 file changed

Lines changed: 2 additions & 7 deletions

File tree

azure/common/apigee-build.yml

Lines changed: 2 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -245,15 +245,10 @@ jobs:
245245
displayName: "ensure build role"
246246
condition: and(succeeded(), eq(variables['build_containers'], 'true'))
247247
248-
- bash: |
249-
echo "[DEBUG] BUILD_ROLE value: $(BUILD_ROLE)"
250-
displayName: "Debug BUILD_ROLE value"
251-
condition: and(succeeded(), eq(variables['build_containers'], 'true'))
252-
253248
- template: ../components/aws-assume-role.yml
254249
parameters:
255-
role: "$(BUILD_ROLE)"
256-
profile: "$(BUILD_ROLE)"
250+
role: $(BUILD_ROLE)
251+
profile: $(BUILD_ROLE)
257252

258253
- bash: |
259254
source "$(service_name)/dist/.build_env_vars"

0 commit comments

Comments
 (0)