We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f197793 commit 520d7d4Copy full SHA for 520d7d4
examples/basic-example/main.tf
@@ -1,16 +1,16 @@
1
module "vpc" {
2
source = "registry.terraform.io/terraform-aws-modules/vpc/aws"
3
- version = "~> 5.0"
4
-
5
- name = "${var.name}-main"
6
- cidr = "10.100.0.0/16"
7
- azs = ["eu-central-1a", "eu-central-1b"]
+ version = "~> 5.0.0"
8
+ name = "${var.name}-main"
+ cidr = "10.100.0.0/16"
+ azs = ["eu-central-1a", "eu-central-1b"]
9
elasticache_subnets = ["10.100.10.0/24", "10.100.11.0/24"]
10
}
11
12
module "redis_security_group" {
13
- source = "github.com/geekcell/terraform-aws-security-group?ref=main"
+ source = "geekcell/security-group/aws"
+ version = ">= 1.0.0, < 2.0.0"
14
15
name = "${var.name}-redis"
16
vpc_id = module.vpc.vpc_id
0 commit comments