Skip to content

Commit 46370e6

Browse files
committed
corrected source and version line within documentation
1 parent 9461d0d commit 46370e6

File tree

1 file changed

+7
-5
lines changed

1 file changed

+7
-5
lines changed

README.md

+7-5
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ In **just one line** with words like **ssh**, **https**, **sftp**, **rabbitmq**,
1010
module security_group {
1111

1212
source = "devops4me/security-group/aws"
13-
version = "~> 1.0.3"
13+
version = "~> 1.0.0"
1414

1515
in_ingress = [ "ssh", "http", "https" ]
1616
in_vpc_id = module.vpc.out_vpc_id
@@ -70,10 +70,12 @@ This security-group module **adds ingress and egress rules** to **either the def
7070

7171
Passing **false** to the **in_use_default** flag causes the **creation of a security group**.
7272

73-
module security_group_module
74-
{
75-
source = "security"
76-
in_vpc_id = "${module.xyz.out_vpc_id}"
73+
module security_group_module {
74+
75+
source = "devops4me/security-group/aws"
76+
version = "~> 1.0.0"
77+
78+
in_vpc_id = module.xyz.out_vpc_id
7779
in_ingress = [ "ssh", "http", "https" ]
7880
in_egress = [ "all-traffic" ]
7981
}

0 commit comments

Comments
 (0)