Skip to content

Commit

Permalink
Merge pull request #1813 from aztfmod/akv-vmext
Browse files Browse the repository at this point in the history
Fix KeyVault Windows VM Extension
  • Loading branch information
arnaudlh authored Oct 6, 2023
2 parents 3892885 + da71538 commit d5e4da5
Show file tree
Hide file tree
Showing 8 changed files with 13 additions and 12 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/landingzone-scenarios.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -86,7 +86,7 @@ jobs:
needs: [job]

container:
image: aztfmod/rover:1.5.6-2309.0507
image: aztfmod/rover:1.5.7-2310.0211
options: --user 0

steps:
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/rover.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@ jobs:
needs: rover_setup

container:
image: aztfmod/rover:1.5.6-2309.0507
image: aztfmod/rover:1.5.7-2310.0211
options: --user 0

env:
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/standalone-compute.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@ jobs:
matrix: ${{fromJSON(needs.load_scenarios.outputs.matrix)}}

container:
image: aztfmod/rover:1.5.6-2309.0507
image: aztfmod/rover:1.5.7-2310.0211
options: --user 0

steps:
Expand Down Expand Up @@ -131,7 +131,7 @@ jobs:
needs: [testcases]

container:
image: aztfmod/rover:1.5.6-2309.0507
image: aztfmod/rover:1.5.7-2310.0211
options: --user 0

steps:
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/standalone-networking.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@ jobs:
matrix: ${{fromJSON(needs.load_scenarios.outputs.matrix)}}

container:
image: aztfmod/rover:1.5.6-2309.0507
image: aztfmod/rover:1.5.7-2310.0211
options: --user 0

steps:
Expand Down Expand Up @@ -131,7 +131,7 @@ jobs:
needs: [testcases]

container:
image: aztfmod/rover:1.5.6-2309.0507
image: aztfmod/rover:1.5.7-2310.0211
options: --user 0

steps:
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/standalone-regressor-tf100.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,7 @@ jobs:
matrix: ${{fromJSON(needs.load_scenarios.outputs.matrix)}}

container:
image: aztfmod/rover:1.5.6-2309.0507
image: aztfmod/rover:1.5.7-2310.0211
options: --user 0

steps:
Expand Down Expand Up @@ -178,7 +178,7 @@ jobs:
needs: [testcases]

container:
image: aztfmod/rover:1.5.6-2309.0507
image: aztfmod/rover:1.5.7-2310.0211
options: --user 0

steps:
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/standalone-tf100.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,7 @@ jobs:
matrix: ${{fromJSON(needs.load_scenarios.outputs.matrix)}}

container:
image: aztfmod/rover:1.5.6-2309.0507
image: aztfmod/rover:1.5.7-2310.0211
options: --user 0

steps:
Expand Down Expand Up @@ -140,7 +140,7 @@ jobs:
needs: [testcases]

container:
image: aztfmod/rover:1.5.6-2309.0507
image: aztfmod/rover:1.5.7-2310.0211
options: --user 0

steps:
Expand Down
3 changes: 2 additions & 1 deletion compute_virtual_machines_extensions.tf
Original file line number Diff line number Diff line change
Expand Up @@ -105,7 +105,8 @@ module "vm_extension_generic" {
}

module "keyvault_for_windows" {
source = "./modules/compute/virtual_machine_extensions"
source = "./modules/compute/virtual_machine_extensions"
depends_on = [module.keyvault_certificates]

for_each = {
for key, value in try(local.compute.virtual_machines, {}) : key => value
Expand Down
2 changes: 1 addition & 1 deletion rover_on_ssh_host.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
version: '3.7'
services:
rover:
image: aztfmod/rover:1.5.6-2309.0507
image: aztfmod/rover:1.5.7-2310.0211

user: vscode

Expand Down

0 comments on commit d5e4da5

Please sign in to comment.