gitextract_pni6tlpg/ ├── .github/ │ └── stale.yml ├── .gitignore ├── CODE_OF_CONDUCT.md ├── CONTRIBUTING.md ├── LICENSE ├── README.md ├── examples/ │ ├── README.md │ ├── example-Windows-data_disk.tf │ ├── example-linux-Network.tf │ ├── example-linux-depend_on.tf │ └── example-vmname.tf ├── main.tf ├── output.tf ├── tests/ │ ├── sanity/ │ │ ├── .terraform.lock.hcl │ │ ├── README.md │ │ ├── apply.sh │ │ ├── cleanup.sh │ │ ├── connection.tf │ │ ├── main.tf │ │ └── plan.sh │ └── smoke/ │ ├── .terraform.lock.hcl │ ├── README.md │ ├── apply.sh │ ├── connection.tf │ ├── main.tf │ └── plan.sh ├── variables.tf └── versions.tf