Skip to content

Commit 75f482b

Browse files
authored
Merge pull request #21 from meshcloud/feature/fix-wrong-syntax-k8s-tf
fix: wrong TF syntax
2 parents cec5d98 + e06928c commit 75f482b

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

modules/aks/github-connector/buildingblock/kubernetes.tf

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -69,10 +69,10 @@ resource "kubernetes_secret" "image_pull" {
6969
data = {
7070
".dockerconfigjson" = jsonencode({
7171
auths = {
72-
(local.acr.host) = {
73-
"username" = local.acr.username
74-
"password" = local.acr.password
75-
"auth" = base64encode("${local.acr.username}:${local.acr.password}")
72+
"${local.acr.host}" = {
73+
username = local.acr.username
74+
password = local.acr.password
75+
auth = base64encode("${local.acr.username}:${local.acr.password}")
7676
}
7777
}
7878
})

0 commit comments

Comments
 (0)