Skip to content

Commit

Permalink
update docs
Browse files Browse the repository at this point in the history
  • Loading branch information
badra001 committed Aug 17, 2022
1 parent dd95058 commit a67c5ea
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion vpc-interface-endpoint/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ This outputs an object with the following elements:
To get the IPs or subnets, you'll need to get the ENIs in a `data` resource like this
```hcl
data "aws_network_interface" "interfaces" {
for_each = toset(module.vpce_secretsmanager.vpc_service_info.network_interface_ids)
for_each = toset(module.vpce_secretsmanager.vpce_service_info.network_interface_ids)
id = each.key
}
locals {
Expand Down
2 changes: 1 addition & 1 deletion vpc-interface-endpoint/main.tf
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@
* To get the IPs or subnets, you'll need to get the ENIs in a `data` resource like this
* ```hcl
* data "aws_network_interface" "interfaces" {
* for_each = toset(module.vpce_secretsmanager.vpc_service_info.network_interface_ids)
* for_each = toset(module.vpce_secretsmanager.vpce_service_info.network_interface_ids)
* id = each.key
* }
* locals {
Expand Down

0 comments on commit a67c5ea

Please sign in to comment.