Merge pull request #170 from cloud-neutral-toolkit/codex/fix-unsupported-argument-in-vpc-resource

Fix NAT EIP configuration for VPC compatibility
This commit is contained in:
cloudneutral 2025-12-10 14:10:17 +08:00 committed by GitHub
commit a614b8ab2a
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -43,7 +43,7 @@ resource "aws_subnet" "private" {
}
resource "aws_eip" "nat" {
vpc = true
domain = "vpc"
tags = merge(var.tags, {
Name = "${var.name_prefix}-nat-eip"