diff options
Diffstat (limited to 'terraform-ci-infra/3n_azure_fsv2')
-rw-r--r-- | terraform-ci-infra/3n_azure_fsv2/main.tf | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/terraform-ci-infra/3n_azure_fsv2/main.tf b/terraform-ci-infra/3n_azure_fsv2/main.tf index 9f6739e676..87d02aa923 100644 --- a/terraform-ci-infra/3n_azure_fsv2/main.tf +++ b/terraform-ci-infra/3n_azure_fsv2/main.tf @@ -487,10 +487,10 @@ resource "null_resource" "deploy_tg" { provisioner "ansible" { plays { playbook { - file_path = "../../testbed-setup/ansible/site_azure.yaml" + file_path = "../../testbed-setup/ansible/site.yaml" force_handlers = true } - hosts = ["tg"] + hosts = ["tg_azure"] extra_vars = { ansible_python_interpreter = "/usr/bin/python3" azure = true @@ -511,10 +511,10 @@ resource "null_resource" "deploy_dut1" { provisioner "ansible" { plays { playbook { - file_path = "../../testbed-setup/ansible/site_azure.yaml" + file_path = "../../testbed-setup/ansible/site.yaml" force_handlers = true } - hosts = ["sut"] + hosts = ["sut_azure"] extra_vars = { ansible_python_interpreter = "/usr/bin/python3" azure = true @@ -535,10 +535,10 @@ resource "null_resource" "deploy_dut2" { provisioner "ansible" { plays { playbook { - file_path = "../../testbed-setup/ansible/site_azure.yaml" + file_path = "../../testbed-setup/ansible/site.yaml" force_handlers = true } - hosts = ["sut"] + hosts = ["sut_azure"] extra_vars = { ansible_python_interpreter = "/usr/bin/python3" azure = true |