Skip to content

Commit

Permalink
* 2.10.4 -- 2024-10-07
Browse files Browse the repository at this point in the history
  - examples/dummy-vpc/vpc0
    - add default security group (to manage it) to remove ingress/egress rules
  • Loading branch information
badra001 committed Oct 7, 2024
1 parent a9788de commit 8ad2308
Show file tree
Hide file tree
Showing 3 changed files with 14 additions and 1 deletion.
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -410,3 +410,7 @@
- route53-zone-association
- terraform-role
- add for other_role_names

* 2.10.4 -- 2024-10-07
- examples/dummy-vpc/vpc0
- add default security group (to manage it) to remove ingress/egress rules
2 changes: 1 addition & 1 deletion common/version.tf
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
locals {
_module_version = "2.10.3"
_module_version = "2.10.4"
_module_names = {
"_main_" = "aws-vpc-setup"

Expand Down
9 changes: 9 additions & 0 deletions examples/dummy-vpc/vpc0/vpc.tf
Original file line number Diff line number Diff line change
Expand Up @@ -8,3 +8,12 @@ resource "aws_vpc" "vpc" {
{ "Name" = "vpc0-dummy" },
)
}

resource "aws_default_security_group" "default" {
vpc_id = aws_vpc.vpc.id

tags = merge(
local.base_tags,
{ "Name" = "default-sg-vpc0-dummy" },
)
}

0 comments on commit 8ad2308

Please sign in to comment.