We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 7ee061b commit bc56302Copy full SHA for bc56302
.github/workflows/deploy_azure_infra.yaml
@@ -40,6 +40,11 @@ jobs:
40
- name: Terraform Plan
41
run: |
42
terraform plan -var-file="dev.tfvars" -out="tfplan.out"
43
+ env:
44
+ TF_VAR_GITHUB_APP_PEM_FILE: ${{ secrets.TF_VAR_GITHUB_APP_PEM_FILE }}
45
+ TF_VAR_GITHUB_APP_CLIENTID: ${{ secrets.TF_VAR_GITHUB_APP_CLIENTID }}
46
+ TF_VAR_GITHUB_APP_ID: ${{ secrets.TF_VAR_GITHUB_APP_ID }}
47
+ TF_VAR_GITHUB_APP_INSTALLATION_ID: ${{ secrets.TF_VAR_GITHUB_APP_INSTALLATION_ID }}
48
49
- name: Terraform Apply
50
if: github.event_name == 'push'
create-azure-infra/variables.tf
@@ -65,3 +65,4 @@ variable "GITHUB_APP_CLIENTID" {
65
description = "inject github app client ID from env variable"
66
type = string
67
}
68
+
0 commit comments