@@ -72,7 +72,7 @@ This module has a few dependencies:
7272Here is an example of how you can use this module in your inventory structure:
7373``` hcl
7474 module "security_group" {
75- source = "git::https://github.com/clouddrove/terraform-aws-security-group.git?ref=tags/0.12.4 "
75+ source = "git::https://github.com/clouddrove/terraform-aws-security-group.git?ref=tags/0.12.5 "
7676 name = "security-group"
7777 application = "clouddrove"
7878 environment = "test"
@@ -93,25 +93,25 @@ Here is an example of how you can use this module in your inventory structure:
9393
9494| Name | Description | Type | Default | Required |
9595| ------| -------------| :----:| :-----:| :-----:|
96- | allowed \_ ip | List of allowed ip. | list | ` <list> ` | no |
97- | allowed \_ ports | List of allowed ingress ports. | list | ` <list> ` | no |
98- | application | Application \ ( e.g. ` cd ` or ` clouddrove ` \ ) . | string | ` "" ` | no |
99- | description | The security group description. | string | ` " Instance default security group (only egress access is allowed)." ` | no |
100- | enable \_ security \_ group | Enable default Security Group with only Egress traffic allowed. | bool | ` " true" ` | no |
101- | environment | Environment \ ( e.g. ` prod ` , ` dev ` , ` staging ` \ ) . | string | ` "" ` | no |
102- | label \_ order | Label order, e.g. ` name ` ,` application ` . | list | ` <list> ` | no |
103- | managedby | ManagedBy, eg 'CloudDrove' or 'AnmolNagpal'. | string | ` " anmol@clouddrove.com" ` | no |
104- | name | Name \ ( e.g. ` app ` or ` cluster ` \ ) . | string | ` "" ` | no |
105- | protocol | The protocol. If not icmp, tcp, udp, or all use the. | string | ` " tcp" ` | no |
106- | security \_ groups | List of Security Group IDs allowed to connect to the instance. | list | ` <list> ` | no |
107- | tags | Additional tags \ ( e.g. map\ (` BusinessUnit ` ,` XYZ ` \ ) . | map(string) | ` <map> ` | no |
108- | vpc \_ id | The ID of the VPC that the instance security group belongs to. | string | ` "" ` | no |
96+ | allowed_ip | List of allowed ip. | list | ` <list> ` | no |
97+ | allowed_ports | List of allowed ingress ports. | list | ` <list> ` | no |
98+ | application | Application (e.g. ` cd ` or ` clouddrove ` ). | string | `` | no |
99+ | description | The security group description. | string | ` Instance default security group (only egress access is allowed). ` | no |
100+ | enable_security_group | Enable default Security Group with only Egress traffic allowed. | bool | ` true ` | no |
101+ | environment | Environment (e.g. ` prod ` , ` dev ` , ` staging ` ). | string | `` | no |
102+ | label_order | Label order, e.g. ` name ` ,` application ` . | list | ` <list> ` | no |
103+ | managedby | ManagedBy, eg 'CloudDrove' or 'AnmolNagpal'. | string | ` anmol@clouddrove.com ` | no |
104+ | name | Name (e.g. ` app ` or ` cluster ` ). | string | `` | no |
105+ | protocol | The protocol. If not icmp, tcp, udp, or all use the. | string | ` tcp ` | no |
106+ | security_groups | List of Security Group IDs allowed to connect to the instance. | list(string) | ` <list> ` | no |
107+ | tags | Additional tags (e.g. map(` BusinessUnit ` ,` XYZ ` ). | map(string) | ` <map> ` | no |
108+ | vpc_id | The ID of the VPC that the instance security group belongs to. | string | `` | no |
109109
110110## Outputs
111111
112112| Name | Description |
113113| ------| -------------|
114- | security \_ group \_ ids | IDs on the AWS Security Groups associated with the instance. |
114+ | security_group_ids | IDs on the AWS Security Groups associated with the instance. |
115115| tags | A mapping of public tags to assign to the resource. |
116116
117117
0 commit comments