bring back datadog integration #160
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Main | |
on: | |
workflow_dispatch: | |
push: | |
branches: | |
- 'main' | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
permissions: | |
id-token: write | |
contents: read | |
steps: | |
- name: Set extra GitHub environment variables | |
id: github-env-vars | |
uses: rlespinasse/github-slug-action@v4 | |
- name: Checkout source | |
id: checkout-source | |
uses: actions/checkout@v4 | |
- name: Setup Python | |
id: install-python | |
uses: actions/setup-python@v3 | |
with: | |
python-version: 3.12 | |
cache: pipenv | |
- name: Install pipenv | |
id: install-pipenv | |
shell: bash | |
run: python -m pip install --upgrade pipenv | |
- name: Install dependencies | |
id: install-python-deps | |
shell: bash | |
run: pipenv install --dev | |
- name: Assume build account AWS credentials | |
id: build-account-credentials | |
uses: aws-actions/configure-aws-credentials@v4 | |
with: | |
role-to-assume: arn:aws:iam::346402060170:role/GitHubActionsBuildRole | |
role-session-name: ${{ env.GITHUB_REPOSITORY_NAME_PART_SLUG_URL }}-${{ github.run_number }}-${{ github.job }} | |
role-duration-seconds: 3600 # 60 minutes; needs to be less than our current max duration | |
aws-region: us-east-1 | |
- name: Install AWS SAM | |
uses: aws-actions/setup-sam@v2 | |
# FIXME: We're only validating the top-level template and not the rest. | |
- name: Validate artifact | |
run: sam validate --lint | |
- name: Synethsize StackSet templates | |
run: | | |
for _f in $(find . -type f -name 'stackset.yaml'); do | |
_dir="$(dirname $_f)/" \ | |
yq \ | |
-i \ | |
'(.. | select(has("localTemplateFile")) | .localTemplateFile) |= load_str(strenv(_dir) + .)' \ | |
$_f; | |
done | |
- name: Upload SAM artifact | |
id: upload-sam-template | |
shell: bash | |
run: | | |
sam package \ | |
--template template.yaml \ | |
--s3-bucket aws-sam-cli-sourcebucket-346402060170-us-east-1 \ | |
--s3-prefix ${{ env.GITHUB_REPOSITORY_OWNER_PART_SLUG_URL }}/${{ env.GITHUB_REPOSITORY_NAME_PART_SLUG_URL }}/${{ env.GITHUB_REF_SLUG_URL }} \ | |
--region us-east-1 \ | |
--output-template-file packaged-template.yaml | |
- name: Upload SAM artifact | |
id: upload-sam-stackset-template | |
shell: bash | |
run: | | |
sam package \ | |
--template delegate-template.yaml \ | |
--s3-bucket aws-sam-cli-sourcebucket-346402060170-us-east-1 \ | |
--s3-prefix ${{ env.GITHUB_REPOSITORY_OWNER_PART_SLUG_URL }}/${{ env.GITHUB_REPOSITORY_NAME_PART_SLUG_URL }}/${{ env.GITHUB_REF_SLUG_URL }} \ | |
--region us-east-1 \ | |
--output-template-file packaged-delegate-template.yaml | |
- name: 'Upload pipeline artifact' | |
id: upload-artifact | |
uses: actions/upload-artifact@v4 | |
with: | |
name: ${{ env.GITHUB_REPOSITORY_SLUG }}-${{ env.GITHUB_REF_SLUG_URL }}-${{ github.run_number }}-${{ github.sha }} | |
path: | | |
**/* | |
!.aws-sam/build | |
!**/.terraform/providers | |
!node_modules | |
!.git | |
if-no-files-found: error | |
retention-days: 30 | |
deploy_management: | |
if: false | |
needs: | |
- build | |
runs-on: ubuntu-latest | |
permissions: | |
id-token: write | |
contents: read | |
steps: | |
- name: Set extra GitHub environment variables | |
id: github-env-vars | |
uses: rlespinasse/github-slug-action@v4 | |
- name: Download artifact | |
id: download-artifact | |
uses: actions/download-artifact@v4 | |
with: | |
name: ${{ env.GITHUB_REPOSITORY_SLUG }}-${{ env.GITHUB_REF_SLUG_URL }}-${{ github.run_number }}-${{ github.sha }} | |
- name: Setup Python | |
id: install-python | |
uses: actions/setup-python@v3 | |
with: | |
python-version: 3.12 | |
cache: pipenv | |
- name: Install pipenv | |
id: install-pipenv | |
shell: bash | |
run: python -m pip install --upgrade pipenv | |
- name: Install dependencies | |
id: install-python-deps | |
shell: bash | |
run: pipenv install --dev | |
- name: Assume build account AWS credentials | |
id: build-account-credentials | |
uses: aws-actions/configure-aws-credentials@v4 | |
with: | |
role-to-assume: arn:aws:iam::346402060170:role/GitHubActionsBuildRole | |
role-session-name: ${{ env.GITHUB_REPOSITORY_NAME_PART_SLUG_URL }}-${{ github.run_number }}-${{ github.job }} | |
role-duration-seconds: 3600 # 60 minutes; needs to be less than our current max duration | |
aws-region: us-east-1 | |
- name: Assume deploy account AWS credentials | |
id: deploy-account-credentials | |
uses: aws-actions/configure-aws-credentials@v4 | |
with: | |
role-to-assume: arn:aws:iam::349603509961:role/GitHubActionsCfnDeployRole | |
role-session-name: ${{ env.GITHUB_REPOSITORY_NAME_PART_SLUG_URL }}-${{ github.run_number }}-${{ github.job }} | |
role-duration-seconds: 3600 # 60 minutes; needs to be less than our current max duration | |
aws-region: us-east-1 | |
role-chaining: true | |
- name: Install AWS SAM | |
uses: aws-actions/setup-sam@v2 | |
- name: Process AWS Tags | |
id: processaws-tags | |
shell: bash | |
run: >- | |
AWS_CFN_TAGS=$( | |
cat cfn-tags.json | | |
jq -r ' | |
to_entries | | |
map("\(.key)=\(.value|tostring)") | | |
. += [ | |
"org:branch=${{ env.GITHUB_EVENT_REF_SLUG_URL }}", | |
"org:stackName=${{ env.GITHUB_REPOSITORY_NAME_PART_SLUG_URL }}-${{ env.GITHUB_EVENT_REF_SLUG_URL }}" | |
] | | |
join(" ") | |
' | |
) && | |
echo "AWS_CFN_TAGS=--tags ${AWS_CFN_TAGS}">> $GITHUB_ENV | |
- name: Process AWS Cloudformation Parameters | |
id: process-aws-parameters | |
shell: bash | |
env: | |
GHA_SECRETS: ${{ tojson(secrets) }} | |
GHA_ENV: ${{ toJson(env) }} | |
run: >- | |
AWS_CFN_PARAMS=$( | |
jq \ | |
-n \ | |
--argjson secrets "$GHA_SECRETS" \ | |
--argjson env "$GHA_ENV" \ | |
-f cfn-parameters.json | | |
jq \ | |
-r ' | |
to_entries | | |
map("\(.key)=\(.value|tostring)") | | |
join(" ") | |
' | |
) && | |
echo "AWS_CFN_PARAMS=--parameter-overrides ${AWS_CFN_PARAMS}" >> $GITHUB_ENV | |
- name: Deploy via SAM | |
id: deploy-sam | |
shell: bash | |
run: | | |
sam deploy \ | |
--template-file packaged-template.yaml \ | |
--stack-name ${{ env.GITHUB_REPOSITORY_NAME_PART_SLUG_URL }}-${{ env.GITHUB_EVENT_REF_SLUG_URL }} \ | |
--s3-bucket aws-sam-cli-sourcebucket-346402060170-us-east-1 \ | |
--s3-prefix ${{ env.GITHUB_REPOSITORY_OWNER_PART_SLUG_URL }}/${{ env.GITHUB_REPOSITORY_NAME_PART_SLUG_URL }}/${{ env.GITHUB_REF_SLUG_URL }} \ | |
--region us-east-1 \ | |
--role-arn arn:aws:iam::349603509961:role/CfnExecIamRole \ | |
--on-failure DELETE \ | |
$AWS_CFN_PARAMS \ | |
$AWS_CFN_TAGS | |
deploy_stackset: | |
needs: | |
- build | |
runs-on: ubuntu-latest | |
permissions: | |
id-token: write | |
contents: read | |
steps: | |
- name: Set extra GitHub environment variables | |
id: github-env-vars | |
uses: rlespinasse/github-slug-action@v4 | |
- name: Download artifact | |
id: download-artifact | |
uses: actions/download-artifact@v4 | |
with: | |
name: ${{ env.GITHUB_REPOSITORY_SLUG }}-${{ env.GITHUB_REF_SLUG_URL }}-${{ github.run_number }}-${{ github.sha }} | |
- name: Setup Python | |
id: install-python | |
uses: actions/setup-python@v3 | |
with: | |
python-version: 3.12 | |
cache: pipenv | |
- name: Install pipenv | |
id: install-pipenv | |
shell: bash | |
run: python -m pip install --upgrade pipenv | |
- name: Install dependencies | |
id: install-python-deps | |
shell: bash | |
run: pipenv install --dev | |
- name: Assume build account AWS credentials | |
id: build-account-credentials | |
uses: aws-actions/configure-aws-credentials@v4 | |
with: | |
role-to-assume: arn:aws:iam::346402060170:role/GitHubActionsBuildRole | |
role-session-name: ${{ env.GITHUB_REPOSITORY_NAME_PART_SLUG_URL }}-${{ github.run_number }}-${{ github.job }} | |
role-duration-seconds: 3600 # 60 minutes; needs to be less than our current max duration | |
aws-region: us-east-1 | |
- name: Assume deploy account AWS credentials | |
id: deploy-account-credentials | |
uses: aws-actions/configure-aws-credentials@v4 | |
with: | |
role-to-assume: arn:aws:iam::481665128499:role/GitHubActionsCfnDeployRole | |
role-session-name: ${{ env.GITHUB_REPOSITORY_NAME_PART_SLUG_URL }}-${{ github.run_number }}-${{ github.job }} | |
role-duration-seconds: 3600 # 60 minutes; needs to be less than our current max duration | |
aws-region: us-east-1 | |
role-chaining: true | |
- name: Install AWS SAM | |
uses: aws-actions/setup-sam@v2 | |
- name: Process AWS Tags | |
id: processaws-tags | |
shell: bash | |
run: >- | |
AWS_CFN_TAGS=$( | |
cat cfn-tags.json | | |
jq -r ' | |
to_entries | | |
map("\(.key)=\(.value|tostring)") | | |
. += [ | |
"org:branch=${{ env.GITHUB_EVENT_REF_SLUG_URL }}", | |
"org:stackName=${{ env.GITHUB_REPOSITORY_NAME_PART_SLUG_URL }}-${{ env.GITHUB_EVENT_REF_SLUG_URL }}" | |
] | | |
join(" ") | |
' | |
) && | |
echo "AWS_CFN_TAGS=--tags ${AWS_CFN_TAGS}">> $GITHUB_ENV | |
- name: Process AWS Cloudformation Parameters | |
id: process-aws-parameters | |
shell: bash | |
env: | |
GHA_SECRETS: ${{ tojson(secrets) }} | |
GHA_ENV: ${{ toJson(env) }} | |
run: >- | |
AWS_CFN_PARAMS=$( | |
jq \ | |
-n \ | |
--argjson secrets "$GHA_SECRETS" \ | |
--argjson env "$GHA_ENV" \ | |
-f cfn-parameters.json | | |
jq \ | |
-r ' | |
to_entries | | |
map("\(.key)=\(.value|tostring)") | | |
join(" ") | |
' | |
) && | |
echo "AWS_CFN_PARAMS=--parameter-overrides ${AWS_CFN_PARAMS}" >> $GITHUB_ENV | |
- name: Deploy via SAM | |
id: deploy-sam | |
shell: bash | |
run: | | |
sam deploy \ | |
--template-file packaged-delegate-template.yaml \ | |
--stack-name ${{ env.GITHUB_REPOSITORY_NAME_PART_SLUG_URL }}-${{ env.GITHUB_EVENT_REF_SLUG_URL }} \ | |
--s3-bucket aws-sam-cli-sourcebucket-346402060170-us-east-1 \ | |
--s3-prefix ${{ env.GITHUB_REPOSITORY_OWNER_PART_SLUG_URL }}/${{ env.GITHUB_REPOSITORY_NAME_PART_SLUG_URL }}/${{ env.GITHUB_REF_SLUG_URL }} \ | |
--region us-east-1 \ | |
--role-arn arn:aws:iam::481665128499:role/CfnExecIamRole \ | |
--on-failure DELETE \ | |
$AWS_CFN_PARAMS \ | |
$AWS_CFN_TAGS |