diff options
author | Peter Mikus <peter.mikus@protonmail.ch> | 2024-12-16 11:45:31 +0100 |
---|---|---|
committer | Peter Mikus <peter.mikus@protonmail.ch> | 2024-12-16 11:45:31 +0100 |
commit | a6cb05d1b843254ef1c4109ea82245da5491b111 (patch) | |
tree | 8b1c97d7e83b26509132364a3f5a39ce300725c9 /fdio.infra | |
parent | e59a830c21e699d51d6a95161575d5c9623f1a19 (diff) |
fix(terraform): AWS
Signed-off-by: Peter Mikus <peter.mikus@protonmail.ch>
Change-Id: Ib1c89fb06dd2ad9c34f8b84c07c62806763ea878
Diffstat (limited to 'fdio.infra')
-rw-r--r-- | fdio.infra/packer-aws-sut/ubuntu_noble_x86.pkr.hcl | 44 |
1 files changed, 22 insertions, 22 deletions
diff --git a/fdio.infra/packer-aws-sut/ubuntu_noble_x86.pkr.hcl b/fdio.infra/packer-aws-sut/ubuntu_noble_x86.pkr.hcl index 1b925e0404..93e6d08a8c 100644 --- a/fdio.infra/packer-aws-sut/ubuntu_noble_x86.pkr.hcl +++ b/fdio.infra/packer-aws-sut/ubuntu_noble_x86.pkr.hcl @@ -83,28 +83,28 @@ source "amazon-ebs" "csit_ubuntu_noble_x86_tg" { ssh_timeout = "30m" } -build { - name = "csit_ubuntu_noble_x86_sut-packer" - sources = [ - "source.amazon-ebs.csit_ubuntu_noble_x86_sut" - ] - provisioner "shell" { - inline = var.first_run_commands - } - provisioner "ansible" { - playbook_file = var.ansible_file_path - user = "ubuntu" - use_proxy = false - groups = ["sut_aws"] - extra_arguments = [ - "--extra-vars", "ansible_ssh_pass=${var.ansible_provision_pwd}", - "--extra-vars", "aws=true" - ] - } - provisioner "shell" { - inline = var.last_run_commands - } -} +#build { +# name = "csit_ubuntu_noble_x86_sut-packer" +# sources = [ +# "source.amazon-ebs.csit_ubuntu_noble_x86_sut" +# ] +# provisioner "shell" { +# inline = var.first_run_commands +# } +# provisioner "ansible" { +# playbook_file = var.ansible_file_path +# user = "ubuntu" +# use_proxy = false +# groups = ["sut_aws"] +# extra_arguments = [ +# "--extra-vars", "ansible_ssh_pass=${var.ansible_provision_pwd}", +# "--extra-vars", "aws=true" +# ] +# } +# provisioner "shell" { +# inline = var.last_run_commands +# } +#} build { name = "csit_ubuntu_noble_x86_tg-packer" |