Skip to content

Commit

Permalink
fix(examples): update source paths in configuration files for custom …
Browse files Browse the repository at this point in the history
…script extensions
  • Loading branch information
rfernandezdo committed Nov 26, 2024
1 parent 5f0b985 commit 9a8608f
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 5 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -50,14 +50,14 @@ storage_account_blobs = {
name = "helloworld.sh"
storage_account_key = "sa1"
storage_container_name = "files"
source = "examples/compute/virtual_machine/110-win-linuxvm-custom-script-extension/scripts/helloworld.sh"
source = "compute/virtual_machine/110-win-linuxvm-custom-script-extension/scripts/helloworld.sh"
parallelism = 1
}
script2 = {
name = "helloworld.ps1"
storage_account_key = "sa1"
storage_container_name = "files"
source = "examples/compute/virtual_machine/110-win-linuxvm-custom-script-extension/scripts/helloworld.ps1"
source = "compute/virtual_machine/110-win-linuxvm-custom-script-extension/scripts/helloworld.ps1"
parallelism = 1
}
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -63,7 +63,7 @@ virtual_machines = {
disable_password_authentication = true

custom_data = {
templatefile = "examples/compute/virtual_machine/113-single-linux-custom-data-template/custom_data.tpl"
templatefile = "compute/virtual_machine/113-single-linux-custom-data-template/custom_data.tpl"
my_value = "my_value"
}
dynamic_custom_data = {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -54,14 +54,14 @@ storage_account_blobs = {
name = "helloworld.sh"
storage_account_key = "sa1"
storage_container_name = "files"
source = "examples/compute/virtual_machine_scale_set/102-linux-win-vmss-custom-script-extension/scripts/helloworld.sh"
source = "compute/virtual_machine_scale_set/102-linux-win-vmss-custom-script-extension/scripts/helloworld.sh"
parallelism = 1
}
script2 = {
name = "helloworld.ps1"
storage_account_key = "sa1"
storage_container_name = "files"
source = "examples/compute/virtual_machine_scale_set/102-linux-win-vmss-custom-script-extension/scripts/helloworld.ps1"
source = "compute/virtual_machine_scale_set/102-linux-win-vmss-custom-script-extension/scripts/helloworld.ps1"
parallelism = 1
}
}
Expand Down

0 comments on commit 9a8608f

Please sign in to comment.