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 153a30c commit 7d12798
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions vpc-interface-endpoint/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -43,8 +43,8 @@ data "aws_network_interface" "interfaces" {
id = each.key
}
locals {
"subnet_interface_id_map" = { for k, v in data.aws_network_interface.interfaces : v.subnet_id => k }
"subnet_interface_ip_map" = { for k, v in data.aws_network_interface.interfaces : v.subnet_id => v.private_ip }
subnet_interface_id_map = { for k, v in data.aws_network_interface.interfaces : v.subnet_id => k }
subnet_interface_ip_map = { for k, v in data.aws_network_interface.interfaces : v.subnet_id => v.private_ip }
}
```

Expand Down
4 changes: 2 additions & 2 deletions vpc-interface-endpoint/main.tf
Original file line number Diff line number Diff line change
Expand Up @@ -44,8 +44,8 @@
* id = each.key
* }
* locals {
* "subnet_interface_id_map" = { for k, v in data.aws_network_interface.interfaces : v.subnet_id => k }
* "subnet_interface_ip_map" = { for k, v in data.aws_network_interface.interfaces : v.subnet_id => v.private_ip }
* subnet_interface_id_map = { for k, v in data.aws_network_interface.interfaces : v.subnet_id => k }
* subnet_interface_ip_map = { for k, v in data.aws_network_interface.interfaces : v.subnet_id => v.private_ip }
* }
* ```
*
Expand Down

0 comments on commit 7d12798

Please sign in to comment.