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