terraform.aws-baseline-infra/modules/networking/delete-default-vpcs/main.tf

8 lines
226 B
Terraform
Raw Normal View History

data aws_regions all-aws-regions {}
2022-08-05 14:56:21 +08:00
resource "null_resource" "shell" {
for_each = data.aws_regions.all-aws-regions.names
2022-08-05 14:56:21 +08:00
provisioner "local-exec" {
command = "/bin/bash -c '${path.module}/exec.sh ${each.value}'"
2022-08-05 14:56:21 +08:00
}
}