Releases: DNXLabs/terraform-aws-network
Releases · DNXLabs/terraform-aws-network
1.6.1
1.6.0
What's Changed
- 🐛 FIX: Terraform docs CI by @caiovfernandes in #22
- Fixing outputs and adding nacls by @adenot in #24
New Contributors
Breaking Changes
MODULE OUTPUTS CHANGED
Before to get the first subnet it would be necessary to use:
subnet_ids = [module.network[0].private_subnet_ids[0][0]]
And now, this will suffice:
subnet_ids = [module.network[0].private_subnet_ids[0]]
Full Changelog: 1.5.1...1.6.0
1.5.1
1.5.0
1.4.4
Restrict access on VPC endpoint to connections only within the VPC
Replacing map function to tomap as map was deprecated on terraform 0.12
1.4.3
1.4.2
- Fix private subnet route_table_association resource.
1.4.1
1.4.0
1.3.0
Enable VPC S3 endpoint
• A VPC endpoint enables you to privately connect your VPC to supported AWS services. Instances in your VPC do not require public IP addresses to communicate with resources in the service. Traffic between your VPC and the other service does not leave the Amazon network.