@@ -72,7 +72,7 @@ This module has a few dependencies:
72
72
Here is an example of how you can use this module in your inventory structure:
73
73
``` hcl
74
74
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 "
76
76
name = "security-group"
77
77
application = "clouddrove"
78
78
environment = "test"
@@ -93,25 +93,25 @@ Here is an example of how you can use this module in your inventory structure:
93
93
94
94
| Name | Description | Type | Default | Required |
95
95
| ------| -------------| :----:| :-----:| :-----:|
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
| ` " [email protected] " ` | 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
| ` [email protected] ` | 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 |
109
109
110
110
## Outputs
111
111
112
112
| Name | Description |
113
113
| ------| -------------|
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. |
115
115
| tags | A mapping of public tags to assign to the resource. |
116
116
117
117
0 commit comments