33
33
type : string
34
34
required : true
35
35
36
- run-name : Layer Deployment (GovCloud) - ${{ inputs.environment }} - version - ${{ inputs.version }}
36
+ run-name : Layer Deployment (GovCloud) - ${{ inputs.environment }} / Version - ${{ inputs.version }}
37
37
38
38
permissions :
39
39
contents : read
@@ -71,14 +71,19 @@ jobs:
71
71
retention-days : 1
72
72
if-no-files-found : error
73
73
74
- copy_east :
75
- name : Copy (East)
74
+ copy :
75
+ name : Copy
76
76
needs : download
77
77
runs-on : ubuntu-latest
78
78
permissions :
79
79
id-token : write
80
80
contents : read
81
- environment : GovCloud ${{ inputs.environment }} (East)
81
+ environment : GovCloud ${{ inputs.environment }}
82
+ strategy :
83
+ matrix :
84
+ region :
85
+ - us-gov-east-1
86
+ - us-gov-west-1
82
87
steps :
83
88
- name : Download Zip
84
89
uses : actions/download-artifact@95815c38cf2ff2164869cbab79da8d1f422bc89e # v4.2.1
@@ -92,86 +97,29 @@ jobs:
92
97
run : |
93
98
SHA=$(jq -r '.Content.CodeSha256' 'AWSLambdaPowertoolsTypeScriptV2.json')
94
99
test "$(openssl dgst -sha256 -binary AWSLambdaPowertoolsTypeScriptV2.zip | openssl enc -base64)" == "$SHA" && echo "SHA OK: ${SHA}" || exit 1
95
- - name : Configure AWS Credentials
96
- uses : aws-actions/configure-aws-credentials@ececac1a45f3b08a01d2dd070d28d111c5fe6722 # v4.1.0
97
- with :
98
- role-to-assume : ${{ secrets.AWS_IAM_ROLE }}
99
- aws-region : us-gov-east-1
100
- mask-aws-account-id : true
101
- - name : Create Layer
102
- id : create-layer
103
- run : |
104
- cat AWSLambdaPowertoolsTypeScriptV2.json | jq '{"LayerName": "AWSLambdaPowertoolsTypeScriptV2", "Description": .Description, "CompatibleRuntimes": .CompatibleRuntimes, "LicenseInfo": .LicenseInfo}' > input.json
105
-
106
- LAYER_VERSION=$(aws --region us-gov-east-1 lambda publish-layer-version \
107
- --zip-file fileb://./AWSLambdaPowertoolsTypeScriptV2.zip \
108
- --cli-input-json file://./input.json \
109
- --query 'Version' \
110
- --output text)
111
-
112
- echo "LAYER_VERSION=$LAYER_VERSION" >> "$GITHUB_OUTPUT"
113
-
114
- aws --region us-gov-east-1 lambda add-layer-version-permission \
115
- --layer-name 'AWSLambdaPowertoolsTypeScriptV2' \
116
- --statement-id 'PublicLayer' \
117
- --action lambda:GetLayerVersion \
118
- --principal '*' \
119
- --version-number "$LAYER_VERSION"
120
- - name : Verify Layer
121
- env :
122
- LAYER_VERSION : ${{ steps.create-layer.outputs.LAYER_VERSION }}
100
+ - id : transform
123
101
run : |
124
- REMOTE_SHA=$(aws --region us-gov-east-1 lambda get-layer-version-by-arn --arn 'arn:aws-us-gov:lambda:us-gov-east-1:${{ secrets.AWS_ACCOUNT_ID }}:layer:AWSLambdaPowertoolsTypeScriptV2:${{ env.LAYER_VERSION }}' --query 'Content.CodeSha256' --output text)
125
- SHA=$(jq -r '.Content.CodeSha256' 'AWSLambdaPowertoolsTypeScriptV2.json')
126
- test "$REMOTE_SHA" == "$SHA" && echo "SHA OK: ${SHA}" || exit 1
127
- aws --region us-gov-east-1 lambda get-layer-version-by-arn --arn 'arn:aws-us-gov:lambda:us-gov-east-1:${{ secrets.AWS_ACCOUNT_ID }}:layer:AWSLambdaPowertoolsTypeScriptV2:${{ env.LAYER_VERSION }}' > govcloud.json
128
- echo ::notice::GovCloud Details
129
- cat govcloud.json | jq -r '{"Layer Version Arn": .LayerVersionArn, "Version": .Version, "Description": .Description, "Compatible Runtimes": .CompatibleRuntimes, "SHA": .Content.CodeSha256} | keys[] as $k | [$k, .[$k]] | @tsv' | column -t -s $'\t'
130
- echo ::notice::Commercial Details
131
- cat AWSLambdaPowertoolsTypeScriptV2.json | jq -r '{"Layer Version Arn": .LayerVersionArn, "Version": .Version, "Description": .Description, "Compatible Runtimes": .CompatibleRuntimes, "SHA": .Content.CodeSha256} | keys[] as $k | [$k, .[$k]] | @tsv' | column -t -s $'\t'
132
-
133
- copy_west :
134
- name : Copy (West)
135
- needs : download
136
- runs-on : ubuntu-latest
137
- permissions :
138
- id-token : write
139
- contents : read
140
- environment :
141
- name : GovCloud ${{ inputs.environment }} (West)
142
- steps :
143
- - name : Download Zip
144
- uses : actions/download-artifact@95815c38cf2ff2164869cbab79da8d1f422bc89e # v4.2.1
145
- with :
146
- name : AWSLambdaPowertoolsTypeScriptV2.zip
147
- - name : Download Metadata
148
- uses : actions/download-artifact@95815c38cf2ff2164869cbab79da8d1f422bc89e # v4.2.1
149
- with :
150
- name : AWSLambdaPowertoolsTypeScriptV2.json
151
- - name : Verify Layer Signature
152
- run : |
153
- SHA=$(jq -r '.Content.CodeSha256' 'AWSLambdaPowertoolsTypeScriptV2.json')
154
- test "$(openssl dgst -sha256 -binary AWSLambdaPowertoolsTypeScriptV2.zip | openssl enc -base64)" == "$SHA" && echo "SHA OK: ${SHA}" || exit 1
102
+ echo 'CONVERTED_REGION=${{ matrix.region }}' | tr 'a-z\-' 'A-Z_' >> "$GITHUB_OUTPUT"
155
103
- name : Configure AWS Credentials
156
104
uses : aws-actions/configure-aws-credentials@ececac1a45f3b08a01d2dd070d28d111c5fe6722 # v4.1.0
157
105
with :
158
- role-to-assume : ${{ secrets.AWS_IAM_ROLE }}
159
- aws-region : us-gov-west-1
106
+ role-to-assume : ${{ secrets[format('IAM_ROLE_{0}', steps.transform.outputs.CONVERTED_REGION)] }}
107
+ aws-region : ${{ matrix.region}}
160
108
mask-aws-account-id : true
161
109
- name : Create Layer
162
110
id : create-layer
163
111
run : |
164
112
cat AWSLambdaPowertoolsTypeScriptV2.json | jq '{"LayerName": "AWSLambdaPowertoolsTypeScriptV2", "Description": .Description, "CompatibleRuntimes": .CompatibleRuntimes, "LicenseInfo": .LicenseInfo}' > input.json
165
113
166
- LAYER_VERSION=$(aws --region us-gov-west-1 lambda publish-layer-version \
114
+ LAYER_VERSION=$(aws --region ${{ matrix.region}} lambda publish-layer-version \
167
115
--zip-file fileb://./AWSLambdaPowertoolsTypeScriptV2.zip \
168
116
--cli-input-json file://./input.json \
169
117
--query 'Version' \
170
118
--output text)
171
119
172
120
echo "LAYER_VERSION=$LAYER_VERSION" >> "$GITHUB_OUTPUT"
173
121
174
- aws --region us-gov-west-1 lambda add-layer-version-permission \
122
+ aws --region ${{ matrix.region}} lambda add-layer-version-permission \
175
123
--layer-name 'AWSLambdaPowertoolsTypeScriptV2' \
176
124
--statement-id 'PublicLayer' \
177
125
--action lambda:GetLayerVersion \
@@ -181,11 +129,17 @@ jobs:
181
129
env :
182
130
LAYER_VERSION : ${{ steps.create-layer.outputs.LAYER_VERSION }}
183
131
run : |
184
- REMOTE_SHA=$(aws --region us-gov-west-1 lambda get-layer-version-by-arn --arn 'arn:aws-us-gov:lambda:us-gov-west-1:${{ secrets.AWS_ACCOUNT_ID }}:layer:AWSLambdaPowertoolsTypeScriptV2:${{ env.LAYER_VERSION }}' --query 'Content.CodeSha256' --output text)
185
- SHA=$(jq -r '.Content.CodeSha256' 'AWSLambdaPowertoolsTypeScriptV2.json')
186
- test "$REMOTE_SHA" == "$SHA" && echo "SHA OK: ${SHA}" || exit 1
187
- aws --region us-gov-west-1 lambda get-layer-version-by-arn --arn 'arn:aws-us-gov:lambda:us-gov-west-1:${{ secrets.AWS_ACCOUNT_ID }}:layer:AWSLambdaPowertoolsTypeScriptV2:${{ env.LAYER_VERSION }}' > govcloud.json
188
- echo ::notice::GovCloud Details
189
- cat govcloud.json | jq -r '{"Layer Version Arn": .LayerVersionArn, "Version": .Version, "Description": .Description, "Compatible Runtimes": .CompatibleRuntimes, "SHA": .Content.CodeSha256} | keys[] as $k | [$k, .[$k]] | @tsv' | column -t -s $'\t'
190
- echo ::notice::Commercial Details
191
- cat AWSLambdaPowertoolsTypeScriptV2.json | jq -r '{"Layer Version Arn": .LayerVersionArn, "Version": .Version, "Description": .Description, "Compatible Runtimes": .CompatibleRuntimes, "SHA": .Content.CodeSha256} | keys[] as $k | [$k, .[$k]] | @tsv' | column -t -s $'\t'
132
+ export layer_output='AWSLambdaPowertoolsTypeScriptV2-${{matrix.region}}.json'
133
+ aws --region ${{ matrix.region}} lambda get-layer-version-by-arn --arn 'arn:aws-us-gov:lambda:${{ matrix.region}}:${{ secrets[format('AWS_ACCOUNT_{0}', steps.transform.outputs.CONVERTED_REGION)] }}:layer:AWSLambdaPowertoolsTypeScriptV2:${{ env.LAYER_VERSION }}' > $layer_output
134
+ REMOTE_SHA=$(jq -r '.Content.CodeSha256' $layer_output)
135
+ LOCAL_SHA=$(jq -r '.Content.CodeSha256' AWSLambdaPowertoolsTypeScriptV2.json)
136
+ test "$REMOTE_SHA" == "$LOCAL_SHA" && echo "SHA OK: ${LOCAL_SHA}" || exit 1
137
+ jq -s -r '["Layer Arn", "Runtimes", "Version", "Description", "SHA256"], ([.[0], .[1]] | .[] | [.LayerArn, (.CompatibleRuntimes | join("/")), .Version, .Description, .Content.CodeSha256]) |@tsv' AWSLambdaPowertoolsTypeScriptV2.json $layer_output | column -t -s $'\t'
138
+
139
+ - name : Store Metadata - ${{ matrix.region }}
140
+ uses : actions/upload-artifact@ea165f8d65b6e75b540449e92b4886f43607fa02 # v4.6.2
141
+ with :
142
+ name : AWSLambdaPowertoolsTypeScriptV2-${{ matrix.region }}.json
143
+ path : AWSLambdaPowertoolsTypeScriptV2-${{ matrix.region }}.json
144
+ retention-days : 1
145
+ if-no-files-found : error
0 commit comments