fix: add a few more permissions to reflect the current script require… #196
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: Altinn Monitor Test rg | |
on: | |
push: | |
branches: | |
- main | |
paths: | |
- .github/workflows/altinn-monitor-test-rg-deploy.yml | |
- actions/terraform/apply/** | |
- actions/terraform/plan/** | |
- infrastructure/adminservices-test/altinn-monitor-test-rg/** | |
pull_request: | |
branches: | |
- main | |
paths: | |
- .github/workflows/altinn-monitor-test-rg-deploy.yml | |
- actions/terraform/apply/** | |
- actions/terraform/plan/** | |
- infrastructure/adminservices-test/altinn-monitor-test-rg/** | |
workflow_dispatch: | |
inputs: | |
log_level: | |
required: true | |
description: Terraform Log Level | |
default: INFO | |
type: choice | |
options: | |
- TRACE | |
- DEBUG | |
- INFO | |
- WARN | |
- ERROR | |
env: | |
ENVIRONMENT: test | |
TF_STATE_NAME: altinn-monitor-test-rg.tfstate | |
TF_PROJECT: ./infrastructure/adminservices-test/altinn-monitor-test-rg | |
ARM_CLIENT_ID: ${{ vars.TF_AZURE_CLIENT_ID }} | |
ARM_SUBSCRIPTION_ID: 1ce8e9af-c2d6-44e7-9c5e-099a308056fe | |
permissions: | |
id-token: write | |
contents: write | |
pull-requests: write | |
jobs: | |
plan: | |
name: Plan | |
environment: reader | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout Repository | |
uses: actions/checkout@v4 | |
# TODO: This needs a review once I'm done with the PoC | |
- name: Azure login | |
uses: azure/login@v2 | |
with: | |
client-id: ${{ env.ARM_CLIENT_ID }} | |
tenant-id: ${{ secrets.AZURE_TENANT_ID }} | |
subscription-id: ${{ env.ARM_SUBSCRIPTION_ID }} | |
# TODO: This needs a review once I'm done with the PoC | |
- name: Populate kubeconfig with k6 context | |
id: populate_kubeconfig_with_k6_context | |
shell: bash | |
run: | | |
if ! az aks install-cli; then | |
echo "Failed to install kubectl CLI" | |
exit 1 | |
fi | |
if ! az aks get-credentials --resource-group k6tests-rg --name k6tests-cluster; then | |
echo "Failed to populate kubeconfig" | |
exit 1 | |
fi | |
if ! kubelogin convert-kubeconfig -l azurecli; then | |
echo "Failed to convert kubeconfig" | |
exit 1 | |
fi | |
- name: Terraform Plan | |
uses: altinn/altinn-platform/actions/terraform/plan@main | |
with: | |
working_directory: ${{ env.TF_PROJECT }} | |
oidc_type: environment | |
oidc_value: ${{ env.ENVIRONMENT }} | |
arm_client_id: ${{ env.ARM_CLIENT_ID }} | |
arm_subscription_id: ${{ env.ARM_SUBSCRIPTION_ID }} | |
tf_state_name: ${{ env.TF_STATE_NAME }} | |
gh_token: ${{ secrets.GITHUB_TOKEN }} | |
tf_version: latest | |
deploy: | |
name: Deploy | |
environment: test | |
if: github.ref == 'refs/heads/main' | |
needs: plan | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout Repository | |
uses: actions/checkout@v4 | |
# TODO: This needs a review once I'm done with the PoC | |
- name: Azure login | |
uses: azure/login@v2 | |
with: | |
client-id: ${{ env.ARM_CLIENT_ID }} | |
tenant-id: ${{ secrets.AZURE_TENANT_ID }} | |
subscription-id: ${{ env.ARM_SUBSCRIPTION_ID }} | |
# TODO: This needs a review once I'm done with the PoC | |
- name: Populate kubeconfig with k6 context | |
id: populate_kubeconfig_with_k6_context | |
shell: bash | |
run: | | |
if ! az aks install-cli; then | |
echo "Failed to install kubectl CLI" | |
exit 1 | |
fi | |
if ! az aks get-credentials --resource-group k6tests-rg --name k6tests-cluster; then | |
echo "Failed to populate kubeconfig" | |
exit 1 | |
fi | |
if ! kubelogin convert-kubeconfig -l azurecli; then | |
echo "Failed to convert kubeconfig" | |
exit 1 | |
fi | |
- name: Terraform Apply | |
uses: altinn/altinn-platform/actions/terraform/apply@main | |
with: | |
working_directory: ${{ env.TF_PROJECT }} | |
oidc_type: environment | |
oidc_value: ${{ env.ENVIRONMENT }} | |
arm_client_id: ${{ env.ARM_CLIENT_ID }} | |
arm_subscription_id: ${{ env.ARM_SUBSCRIPTION_ID }} | |
tf_state_name: ${{ env.TF_STATE_NAME }} | |
tf_version: latest |