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 6602c82 commit 6771420Copy full SHA for 6771420
modules/aks/github-connector/buildingblock/github.tf
@@ -73,6 +73,10 @@ resource "github_repository_file" "workflow" {
73
commit_message = "Worflow for building and deploying container images to AKS"
74
overwrite_on_create = true
75
76
+ depends_on = [
77
+ github_repository_file.dockerfile, # workflow needs dockerfile to build image
78
+ kubernetes_role_binding.github_actions, # workflow needs role binding to deploy
79
+ ]
80
lifecycle {
81
ignore_changes = [content]
82
}
0 commit comments