Skip to content

Commit 0b44b51

Browse files
terraform-docs: automated action
1 parent e720639 commit 0b44b51

File tree

1 file changed

+7
-6
lines changed

1 file changed

+7
-6
lines changed

README.md

Lines changed: 7 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -103,17 +103,18 @@ difference it can make in your AWS setup!
103103
```hcl
104104
module "vpc" {
105105
source = "registry.terraform.io/terraform-aws-modules/vpc/aws"
106-
version = "~> 5.0"
107-
108-
name = "${var.name}-main"
109-
cidr = "10.100.0.0/16"
110-
azs = ["eu-central-1a", "eu-central-1b"]
106+
version = "~> 5.0.0"
111107
108+
name = "${var.name}-main"
109+
cidr = "10.100.0.0/16"
110+
azs = ["eu-central-1a", "eu-central-1b"]
111+
private_subnets = ["10.100.1.0/24", "10.100.2.0/24"]
112112
elasticache_subnets = ["10.100.10.0/24", "10.100.11.0/24"]
113113
}
114114
115115
module "redis_security_group" {
116-
source = "github.com/geekcell/terraform-aws-security-group?ref=main"
116+
source = "geekcell/security-group/aws"
117+
version = ">= 1.0.0, < 2.0.0"
117118
118119
name = "${var.name}-redis"
119120
vpc_id = module.vpc.vpc_id

0 commit comments

Comments
 (0)