Merge pull request #32074 from bendrucker/patch-1

This commit is contained in:
Craig Wright
2023-07-14 10:24:31 -07:00
committed by GitHub

View File

@@ -180,7 +180,7 @@ The following directives are supported:
```hcl
<<EOT
%{ for ip in aws_instance.example.*.private_ip }
%{ for ip in aws_instance.example[*].private_ip }
server ${ip}
%{ endfor }
EOT
@@ -201,7 +201,7 @@ marker appears at the end):
```hcl
<<EOT
%{ for ip in aws_instance.example.*.private_ip ~}
%{ for ip in aws_instance.example[*].private_ip ~}
server ${ip}
%{ endfor ~}
EOT