Issue with Sensitive Values in GitHub Actions
When my job runs in GitHub Actions, it assumes that all letters d, t and p are secrets and gives me errors like **** where they should be p, d or t.
Reversing the flow of jobs in a workflow
I’m working on some terraform logic and using github workflows to deploy multiple components in a sequential manner like job2(alb) depending on the completion of job1(creation of VPC). This works fine during the apply phase. However if I were to delete the infra using terraform destroy the sequence of jobs fails as job1 can’t be successfull without job1.