Commit fa11f9d7 authored by Anton Babenko's avatar Anton Babenko Committed by GitHub

feat: Shorten outputs (removing this_) (#210)

parent 9c17bd70
repos: repos:
- repo: git://github.com/antonbabenko/pre-commit-terraform - repo: git://github.com/antonbabenko/pre-commit-terraform
rev: v1.48.0 rev: v1.50.0
hooks: hooks:
- id: terraform_fmt - id: terraform_fmt
- id: terraform_docs - id: terraform_docs
......
...@@ -26,7 +26,7 @@ If there is a missing feature or a bug - [open an issue](https://github.com/terr ...@@ -26,7 +26,7 @@ If there is a missing feature or a bug - [open an issue](https://github.com/terr
## Terraform versions ## Terraform versions
For Terraform 0.12 use version `v3.*` of this module. For Terraform 0.12 use version `v3.*` of this module or newer.
If you are using Terraform 0.11 you can use versions `v2.*`. If you are using Terraform 0.11 you can use versions `v2.*`.
...@@ -255,11 +255,11 @@ No modules. ...@@ -255,11 +255,11 @@ No modules.
| Name | Description | | Name | Description |
|------|-------------| |------|-------------|
| <a name="output_this_security_group_description"></a> [this\_security\_group\_description](#output\_this\_security\_group\_description) | The description of the security group | | <a name="output_security_group_description"></a> [security\_group\_description](#output\_security\_group\_description) | The description of the security group |
| <a name="output_this_security_group_id"></a> [this\_security\_group\_id](#output\_this\_security\_group\_id) | The ID of the security group | | <a name="output_security_group_id"></a> [security\_group\_id](#output\_security\_group\_id) | The ID of the security group |
| <a name="output_this_security_group_name"></a> [this\_security\_group\_name](#output\_this\_security\_group\_name) | The name of the security group | | <a name="output_security_group_name"></a> [security\_group\_name](#output\_security\_group\_name) | The name of the security group |
| <a name="output_this_security_group_owner_id"></a> [this\_security\_group\_owner\_id](#output\_this\_security\_group\_owner\_id) | The owner ID | | <a name="output_security_group_owner_id"></a> [security\_group\_owner\_id](#output\_security\_group\_owner\_id) | The owner ID |
| <a name="output_this_security_group_vpc_id"></a> [this\_security\_group\_vpc\_id](#output\_this\_security\_group\_vpc\_id) | The VPC ID | | <a name="output_security_group_vpc_id"></a> [security\_group\_vpc\_id](#output\_security\_group\_vpc\_id) | The VPC ID |
<!-- END OF PRE-COMMIT-TERRAFORM DOCS HOOK --> <!-- END OF PRE-COMMIT-TERRAFORM DOCS HOOK -->
## Authors ## Authors
......
...@@ -52,9 +52,9 @@ No inputs. ...@@ -52,9 +52,9 @@ No inputs.
| Name | Description | | Name | Description |
|------|-------------| |------|-------------|
| <a name="output_this_security_group_description"></a> [this\_security\_group\_description](#output\_this\_security\_group\_description) | The description of the security group | | <a name="output_security_group_description"></a> [security\_group\_description](#output\_security\_group\_description) | The description of the security group |
| <a name="output_this_security_group_id"></a> [this\_security\_group\_id](#output\_this\_security\_group\_id) | The ID of the security group | | <a name="output_security_group_id"></a> [security\_group\_id](#output\_security\_group\_id) | The ID of the security group |
| <a name="output_this_security_group_name"></a> [this\_security\_group\_name](#output\_this\_security\_group\_name) | The name of the security group | | <a name="output_security_group_name"></a> [security\_group\_name](#output\_security\_group\_name) | The name of the security group |
| <a name="output_this_security_group_owner_id"></a> [this\_security\_group\_owner\_id](#output\_this\_security\_group\_owner\_id) | The owner ID | | <a name="output_security_group_owner_id"></a> [security\_group\_owner\_id](#output\_security\_group\_owner\_id) | The owner ID |
| <a name="output_this_security_group_vpc_id"></a> [this\_security\_group\_vpc\_id](#output\_this\_security\_group\_vpc\_id) | The VPC ID | | <a name="output_security_group_vpc_id"></a> [security\_group\_vpc\_id](#output\_security\_group\_vpc\_id) | The VPC ID |
<!-- END OF PRE-COMMIT-TERRAFORM DOCS HOOK --> <!-- END OF PRE-COMMIT-TERRAFORM DOCS HOOK -->
...@@ -150,14 +150,14 @@ module "complete_sg" { ...@@ -150,14 +150,14 @@ module "complete_sg" {
computed_ingress_with_source_security_group_id = [ computed_ingress_with_source_security_group_id = [
{ {
rule = "postgresql-tcp" rule = "postgresql-tcp"
source_security_group_id = module.main_sg.this_security_group_id source_security_group_id = module.main_sg.security_group_id
}, },
{ {
from_port = 23 from_port = 23
to_port = 23 to_port = 23
protocol = 6 protocol = 6
description = "Service name" description = "Service name"
source_security_group_id = module.main_sg.this_security_group_id source_security_group_id = module.main_sg.security_group_id
}, },
] ]
...@@ -278,7 +278,7 @@ module "complete_sg" { ...@@ -278,7 +278,7 @@ module "complete_sg" {
computed_egress_with_source_security_group_id = [ computed_egress_with_source_security_group_id = [
{ {
rule = "postgresql-tcp" rule = "postgresql-tcp"
source_security_group_id = module.main_sg.this_security_group_id source_security_group_id = module.main_sg.security_group_id
}, },
] ]
......
output "this_security_group_id" { output "security_group_id" {
description = "The ID of the security group" description = "The ID of the security group"
value = module.complete_sg.this_security_group_id value = module.complete_sg.security_group_id
} }
output "this_security_group_vpc_id" { output "security_group_vpc_id" {
description = "The VPC ID" description = "The VPC ID"
value = module.complete_sg.this_security_group_vpc_id value = module.complete_sg.security_group_vpc_id
} }
output "this_security_group_owner_id" { output "security_group_owner_id" {
description = "The owner ID" description = "The owner ID"
value = module.complete_sg.this_security_group_owner_id value = module.complete_sg.security_group_owner_id
} }
output "this_security_group_name" { output "security_group_name" {
description = "The name of the security group" description = "The name of the security group"
value = module.complete_sg.this_security_group_name value = module.complete_sg.security_group_name
} }
output "this_security_group_description" { output "security_group_description" {
description = "The description of the security group" description = "The description of the security group"
value = module.complete_sg.this_security_group_description value = module.complete_sg.security_group_description
} }
...@@ -47,9 +47,9 @@ No inputs. ...@@ -47,9 +47,9 @@ No inputs.
| Name | Description | | Name | Description |
|------|-------------| |------|-------------|
| <a name="output_this_security_group_description"></a> [this\_security\_group\_description](#output\_this\_security\_group\_description) | The description of the security group | | <a name="output_security_group_description"></a> [security\_group\_description](#output\_security\_group\_description) | The description of the security group |
| <a name="output_this_security_group_id"></a> [this\_security\_group\_id](#output\_this\_security\_group\_id) | The ID of the security group | | <a name="output_security_group_id"></a> [security\_group\_id](#output\_security\_group\_id) | The ID of the security group |
| <a name="output_this_security_group_name"></a> [this\_security\_group\_name](#output\_this\_security\_group\_name) | The name of the security group | | <a name="output_security_group_name"></a> [security\_group\_name](#output\_security\_group\_name) | The name of the security group |
| <a name="output_this_security_group_owner_id"></a> [this\_security\_group\_owner\_id](#output\_this\_security\_group\_owner\_id) | The owner ID | | <a name="output_security_group_owner_id"></a> [security\_group\_owner\_id](#output\_security\_group\_owner\_id) | The owner ID |
| <a name="output_this_security_group_vpc_id"></a> [this\_security\_group\_vpc\_id](#output\_this\_security\_group\_vpc\_id) | The VPC ID | | <a name="output_security_group_vpc_id"></a> [security\_group\_vpc\_id](#output\_security\_group\_vpc\_id) | The VPC ID |
<!-- END OF PRE-COMMIT-TERRAFORM DOCS HOOK --> <!-- END OF PRE-COMMIT-TERRAFORM DOCS HOOK -->
...@@ -46,7 +46,7 @@ module "mysql_sg" { ...@@ -46,7 +46,7 @@ module "mysql_sg" {
computed_ingress_with_source_security_group_id = [ computed_ingress_with_source_security_group_id = [
{ {
rule = "mysql-tcp" rule = "mysql-tcp"
source_security_group_id = module.http_sg.this_security_group_id source_security_group_id = module.http_sg.security_group_id
}, },
] ]
......
output "this_security_group_id" { output "security_group_id" {
description = "The ID of the security group" description = "The ID of the security group"
value = module.mysql_sg.this_security_group_id value = module.mysql_sg.security_group_id
} }
output "this_security_group_vpc_id" { output "security_group_vpc_id" {
description = "The VPC ID" description = "The VPC ID"
value = module.mysql_sg.this_security_group_vpc_id value = module.mysql_sg.security_group_vpc_id
} }
output "this_security_group_owner_id" { output "security_group_owner_id" {
description = "The owner ID" description = "The owner ID"
value = module.mysql_sg.this_security_group_owner_id value = module.mysql_sg.security_group_owner_id
} }
output "this_security_group_name" { output "security_group_name" {
description = "The name of the security group" description = "The name of the security group"
value = module.mysql_sg.this_security_group_name value = module.mysql_sg.security_group_name
} }
output "this_security_group_description" { output "security_group_description" {
description = "The description of the security group" description = "The description of the security group"
value = module.mysql_sg.this_security_group_description value = module.mysql_sg.security_group_description
} }
...@@ -49,5 +49,5 @@ No inputs. ...@@ -49,5 +49,5 @@ No inputs.
| Name | Description | | Name | Description |
|------|-------------| |------|-------------|
| <a name="output_this_security_group_id"></a> [this\_security\_group\_id](#output\_this\_security\_group\_id) | The ID of the security group | | <a name="output_security_group_id"></a> [security\_group\_id](#output\_security\_group\_id) | The ID of the security group |
<!-- END OF PRE-COMMIT-TERRAFORM DOCS HOOK --> <!-- END OF PRE-COMMIT-TERRAFORM DOCS HOOK -->
output "this_security_group_id" { output "security_group_id" {
description = "The ID of the security group" description = "The ID of the security group"
value = module.complete_sg_disabled.this_security_group_id value = module.complete_sg_disabled.security_group_id
} }
...@@ -48,9 +48,9 @@ No inputs. ...@@ -48,9 +48,9 @@ No inputs.
| Name | Description | | Name | Description |
|------|-------------| |------|-------------|
| <a name="output_this_security_group_description"></a> [this\_security\_group\_description](#output\_this\_security\_group\_description) | The description of the security group | | <a name="output_security_group_description"></a> [security\_group\_description](#output\_security\_group\_description) | The description of the security group |
| <a name="output_this_security_group_id"></a> [this\_security\_group\_id](#output\_this\_security\_group\_id) | The ID of the security group | | <a name="output_security_group_id"></a> [security\_group\_id](#output\_security\_group\_id) | The ID of the security group |
| <a name="output_this_security_group_name"></a> [this\_security\_group\_name](#output\_this\_security\_group\_name) | The name of the security group | | <a name="output_security_group_name"></a> [security\_group\_name](#output\_security\_group\_name) | The name of the security group |
| <a name="output_this_security_group_owner_id"></a> [this\_security\_group\_owner\_id](#output\_this\_security\_group\_owner\_id) | The owner ID | | <a name="output_security_group_owner_id"></a> [security\_group\_owner\_id](#output\_security\_group\_owner\_id) | The owner ID |
| <a name="output_this_security_group_vpc_id"></a> [this\_security\_group\_vpc\_id](#output\_this\_security\_group\_vpc\_id) | The VPC ID | | <a name="output_security_group_vpc_id"></a> [security\_group\_vpc\_id](#output\_security\_group\_vpc\_id) | The VPC ID |
<!-- END OF PRE-COMMIT-TERRAFORM DOCS HOOK --> <!-- END OF PRE-COMMIT-TERRAFORM DOCS HOOK -->
output "this_security_group_id" { output "security_group_id" {
description = "The ID of the security group" description = "The ID of the security group"
value = module.http_sg.this_security_group_id value = module.http_sg.security_group_id
} }
output "this_security_group_vpc_id" { output "security_group_vpc_id" {
description = "The VPC ID" description = "The VPC ID"
value = module.http_sg.this_security_group_vpc_id value = module.http_sg.security_group_vpc_id
} }
output "this_security_group_owner_id" { output "security_group_owner_id" {
description = "The owner ID" description = "The owner ID"
value = module.http_sg.this_security_group_owner_id value = module.http_sg.security_group_owner_id
} }
output "this_security_group_name" { output "security_group_name" {
description = "The name of the security group" description = "The name of the security group"
value = module.http_sg.this_security_group_name value = module.http_sg.security_group_name
} }
output "this_security_group_description" { output "security_group_description" {
description = "The description of the security group" description = "The description of the security group"
value = module.http_sg.this_security_group_description value = module.http_sg.security_group_description
} }
...@@ -52,9 +52,9 @@ No inputs. ...@@ -52,9 +52,9 @@ No inputs.
| Name | Description | | Name | Description |
|------|-------------| |------|-------------|
| <a name="output_this_security_group_description"></a> [this\_security\_group\_description](#output\_this\_security\_group\_description) | The description of the security group | | <a name="output_security_group_description"></a> [security\_group\_description](#output\_security\_group\_description) | The description of the security group |
| <a name="output_this_security_group_id"></a> [this\_security\_group\_id](#output\_this\_security\_group\_id) | The ID of the security group | | <a name="output_security_group_id"></a> [security\_group\_id](#output\_security\_group\_id) | The ID of the security group |
| <a name="output_this_security_group_name"></a> [this\_security\_group\_name](#output\_this\_security\_group\_name) | The name of the security group | | <a name="output_security_group_name"></a> [security\_group\_name](#output\_security\_group\_name) | The name of the security group |
| <a name="output_this_security_group_owner_id"></a> [this\_security\_group\_owner\_id](#output\_this\_security\_group\_owner\_id) | The owner ID | | <a name="output_security_group_owner_id"></a> [security\_group\_owner\_id](#output\_security\_group\_owner\_id) | The owner ID |
| <a name="output_this_security_group_vpc_id"></a> [this\_security\_group\_vpc\_id](#output\_this\_security\_group\_vpc\_id) | The VPC ID | | <a name="output_security_group_vpc_id"></a> [security\_group\_vpc\_id](#output\_security\_group\_vpc\_id) | The VPC ID |
<!-- END OF PRE-COMMIT-TERRAFORM DOCS HOOK --> <!-- END OF PRE-COMMIT-TERRAFORM DOCS HOOK -->
output "this_security_group_id" { output "security_group_id" {
description = "The ID of the security group" description = "The ID of the security group"
value = module.http_sg.this_security_group_id value = module.http_sg.security_group_id
} }
output "this_security_group_vpc_id" { output "security_group_vpc_id" {
description = "The VPC ID" description = "The VPC ID"
value = module.http_sg.this_security_group_vpc_id value = module.http_sg.security_group_vpc_id
} }
output "this_security_group_owner_id" { output "security_group_owner_id" {
description = "The owner ID" description = "The owner ID"
value = module.http_sg.this_security_group_owner_id value = module.http_sg.security_group_owner_id
} }
output "this_security_group_name" { output "security_group_name" {
description = "The name of the security group" description = "The name of the security group"
value = module.http_sg.this_security_group_name value = module.http_sg.security_group_name
} }
output "this_security_group_description" { output "security_group_description" {
description = "The description of the security group" description = "The description of the security group"
value = module.http_sg.this_security_group_description value = module.http_sg.security_group_description
} }
output "this_security_group_id" { output "security_group_id" {
description = "The ID of the security group" description = "The ID of the security group"
value = module.sg.this_security_group_id value = module.sg.security_group_id
} }
output "this_security_group_vpc_id" { output "security_group_vpc_id" {
description = "The VPC ID" description = "The VPC ID"
value = module.sg.this_security_group_vpc_id value = module.sg.security_group_vpc_id
} }
output "this_security_group_owner_id" { output "security_group_owner_id" {
description = "The owner ID" description = "The owner ID"
value = module.sg.this_security_group_owner_id value = module.sg.security_group_owner_id
} }
output "this_security_group_name" { output "security_group_name" {
description = "The name of the security group" description = "The name of the security group"
value = module.sg.this_security_group_name value = module.sg.security_group_name
} }
output "this_security_group_description" { output "security_group_description" {
description = "The description of the security group" description = "The description of the security group"
value = module.sg.this_security_group_description value = module.sg.security_group_description
} }
...@@ -5,7 +5,7 @@ ...@@ -5,7 +5,7 @@
```hcl ```hcl
module "activemq_security_group" { module "activemq_security_group" {
source = "terraform-aws-modules/security-group/aws//modules/activemq" source = "terraform-aws-modules/security-group/aws//modules/activemq"
version = "~> 3.0" version = "~> 4.0"
# omitted... # omitted...
} }
...@@ -111,9 +111,9 @@ No resources. ...@@ -111,9 +111,9 @@ No resources.
| Name | Description | | Name | Description |
|------|-------------| |------|-------------|
| <a name="output_this_security_group_description"></a> [this\_security\_group\_description](#output\_this\_security\_group\_description) | The description of the security group | | <a name="output_security_group_description"></a> [security\_group\_description](#output\_security\_group\_description) | The description of the security group |
| <a name="output_this_security_group_id"></a> [this\_security\_group\_id](#output\_this\_security\_group\_id) | The ID of the security group | | <a name="output_security_group_id"></a> [security\_group\_id](#output\_security\_group\_id) | The ID of the security group |
| <a name="output_this_security_group_name"></a> [this\_security\_group\_name](#output\_this\_security\_group\_name) | The name of the security group | | <a name="output_security_group_name"></a> [security\_group\_name](#output\_security\_group\_name) | The name of the security group |
| <a name="output_this_security_group_owner_id"></a> [this\_security\_group\_owner\_id](#output\_this\_security\_group\_owner\_id) | The owner ID | | <a name="output_security_group_owner_id"></a> [security\_group\_owner\_id](#output\_security\_group\_owner\_id) | The owner ID |
| <a name="output_this_security_group_vpc_id"></a> [this\_security\_group\_vpc\_id](#output\_this\_security\_group\_vpc\_id) | The VPC ID | | <a name="output_security_group_vpc_id"></a> [security\_group\_vpc\_id](#output\_security\_group\_vpc\_id) | The VPC ID |
<!-- END OF PRE-COMMIT-TERRAFORM DOCS HOOK --> <!-- END OF PRE-COMMIT-TERRAFORM DOCS HOOK -->
output "this_security_group_id" { output "security_group_id" {
description = "The ID of the security group" description = "The ID of the security group"
value = module.sg.this_security_group_id value = module.sg.security_group_id
} }
output "this_security_group_vpc_id" { output "security_group_vpc_id" {
description = "The VPC ID" description = "The VPC ID"
value = module.sg.this_security_group_vpc_id value = module.sg.security_group_vpc_id
} }
output "this_security_group_owner_id" { output "security_group_owner_id" {
description = "The owner ID" description = "The owner ID"
value = module.sg.this_security_group_owner_id value = module.sg.security_group_owner_id
} }
output "this_security_group_name" { output "security_group_name" {
description = "The name of the security group" description = "The name of the security group"
value = module.sg.this_security_group_name value = module.sg.security_group_name
} }
output "this_security_group_description" { output "security_group_description" {
description = "The description of the security group" description = "The description of the security group"
value = module.sg.this_security_group_description value = module.sg.security_group_description
} }
...@@ -5,7 +5,7 @@ ...@@ -5,7 +5,7 @@
```hcl ```hcl
module "alertmanager_security_group" { module "alertmanager_security_group" {
source = "terraform-aws-modules/security-group/aws//modules/alertmanager" source = "terraform-aws-modules/security-group/aws//modules/alertmanager"
version = "~> 3.0" version = "~> 4.0"
# omitted... # omitted...
} }
...@@ -111,9 +111,9 @@ No resources. ...@@ -111,9 +111,9 @@ No resources.
| Name | Description | | Name | Description |
|------|-------------| |------|-------------|
| <a name="output_this_security_group_description"></a> [this\_security\_group\_description](#output\_this\_security\_group\_description) | The description of the security group | | <a name="output_security_group_description"></a> [security\_group\_description](#output\_security\_group\_description) | The description of the security group |
| <a name="output_this_security_group_id"></a> [this\_security\_group\_id](#output\_this\_security\_group\_id) | The ID of the security group | | <a name="output_security_group_id"></a> [security\_group\_id](#output\_security\_group\_id) | The ID of the security group |
| <a name="output_this_security_group_name"></a> [this\_security\_group\_name](#output\_this\_security\_group\_name) | The name of the security group | | <a name="output_security_group_name"></a> [security\_group\_name](#output\_security\_group\_name) | The name of the security group |
| <a name="output_this_security_group_owner_id"></a> [this\_security\_group\_owner\_id](#output\_this\_security\_group\_owner\_id) | The owner ID | | <a name="output_security_group_owner_id"></a> [security\_group\_owner\_id](#output\_security\_group\_owner\_id) | The owner ID |
| <a name="output_this_security_group_vpc_id"></a> [this\_security\_group\_vpc\_id](#output\_this\_security\_group\_vpc\_id) | The VPC ID | | <a name="output_security_group_vpc_id"></a> [security\_group\_vpc\_id](#output\_security\_group\_vpc\_id) | The VPC ID |
<!-- END OF PRE-COMMIT-TERRAFORM DOCS HOOK --> <!-- END OF PRE-COMMIT-TERRAFORM DOCS HOOK -->
output "this_security_group_id" { output "security_group_id" {
description = "The ID of the security group" description = "The ID of the security group"
value = module.sg.this_security_group_id value = module.sg.security_group_id
} }
output "this_security_group_vpc_id" { output "security_group_vpc_id" {
description = "The VPC ID" description = "The VPC ID"
value = module.sg.this_security_group_vpc_id value = module.sg.security_group_vpc_id
} }
output "this_security_group_owner_id" { output "security_group_owner_id" {
description = "The owner ID" description = "The owner ID"
value = module.sg.this_security_group_owner_id value = module.sg.security_group_owner_id
} }
output "this_security_group_name" { output "security_group_name" {
description = "The name of the security group" description = "The name of the security group"
value = module.sg.this_security_group_name value = module.sg.security_group_name
} }
output "this_security_group_description" { output "security_group_description" {
description = "The description of the security group" description = "The description of the security group"
value = module.sg.this_security_group_description value = module.sg.security_group_description
} }
...@@ -5,7 +5,7 @@ ...@@ -5,7 +5,7 @@
```hcl ```hcl
module "carbon_relay-ng_security_group" { module "carbon_relay-ng_security_group" {
source = "terraform-aws-modules/security-group/aws//modules/carbon-relay-ng" source = "terraform-aws-modules/security-group/aws//modules/carbon-relay-ng"
version = "~> 3.0" version = "~> 4.0"
# omitted... # omitted...
} }
...@@ -111,9 +111,9 @@ No resources. ...@@ -111,9 +111,9 @@ No resources.
| Name | Description | | Name | Description |
|------|-------------| |------|-------------|
| <a name="output_this_security_group_description"></a> [this\_security\_group\_description](#output\_this\_security\_group\_description) | The description of the security group | | <a name="output_security_group_description"></a> [security\_group\_description](#output\_security\_group\_description) | The description of the security group |
| <a name="output_this_security_group_id"></a> [this\_security\_group\_id](#output\_this\_security\_group\_id) | The ID of the security group | | <a name="output_security_group_id"></a> [security\_group\_id](#output\_security\_group\_id) | The ID of the security group |
| <a name="output_this_security_group_name"></a> [this\_security\_group\_name](#output\_this\_security\_group\_name) | The name of the security group | | <a name="output_security_group_name"></a> [security\_group\_name](#output\_security\_group\_name) | The name of the security group |
| <a name="output_this_security_group_owner_id"></a> [this\_security\_group\_owner\_id](#output\_this\_security\_group\_owner\_id) | The owner ID | | <a name="output_security_group_owner_id"></a> [security\_group\_owner\_id](#output\_security\_group\_owner\_id) | The owner ID |
| <a name="output_this_security_group_vpc_id"></a> [this\_security\_group\_vpc\_id](#output\_this\_security\_group\_vpc\_id) | The VPC ID | | <a name="output_security_group_vpc_id"></a> [security\_group\_vpc\_id](#output\_security\_group\_vpc\_id) | The VPC ID |
<!-- END OF PRE-COMMIT-TERRAFORM DOCS HOOK --> <!-- END OF PRE-COMMIT-TERRAFORM DOCS HOOK -->
output "this_security_group_id" { output "security_group_id" {
description = "The ID of the security group" description = "The ID of the security group"
value = module.sg.this_security_group_id value = module.sg.security_group_id
} }
output "this_security_group_vpc_id" { output "security_group_vpc_id" {
description = "The VPC ID" description = "The VPC ID"
value = module.sg.this_security_group_vpc_id value = module.sg.security_group_vpc_id
} }
output "this_security_group_owner_id" { output "security_group_owner_id" {
description = "The owner ID" description = "The owner ID"
value = module.sg.this_security_group_owner_id value = module.sg.security_group_owner_id
} }
output "this_security_group_name" { output "security_group_name" {
description = "The name of the security group" description = "The name of the security group"
value = module.sg.this_security_group_name value = module.sg.security_group_name
} }
output "this_security_group_description" { output "security_group_description" {
description = "The description of the security group" description = "The description of the security group"
value = module.sg.this_security_group_description value = module.sg.security_group_description
} }
...@@ -5,7 +5,7 @@ ...@@ -5,7 +5,7 @@
```hcl ```hcl
module "cassandra_security_group" { module "cassandra_security_group" {
source = "terraform-aws-modules/security-group/aws//modules/cassandra" source = "terraform-aws-modules/security-group/aws//modules/cassandra"
version = "~> 3.0" version = "~> 4.0"
# omitted... # omitted...
} }
...@@ -111,9 +111,9 @@ No resources. ...@@ -111,9 +111,9 @@ No resources.
| Name | Description | | Name | Description |
|------|-------------| |------|-------------|
| <a name="output_this_security_group_description"></a> [this\_security\_group\_description](#output\_this\_security\_group\_description) | The description of the security group | | <a name="output_security_group_description"></a> [security\_group\_description](#output\_security\_group\_description) | The description of the security group |
| <a name="output_this_security_group_id"></a> [this\_security\_group\_id](#output\_this\_security\_group\_id) | The ID of the security group | | <a name="output_security_group_id"></a> [security\_group\_id](#output\_security\_group\_id) | The ID of the security group |
| <a name="output_this_security_group_name"></a> [this\_security\_group\_name](#output\_this\_security\_group\_name) | The name of the security group | | <a name="output_security_group_name"></a> [security\_group\_name](#output\_security\_group\_name) | The name of the security group |
| <a name="output_this_security_group_owner_id"></a> [this\_security\_group\_owner\_id](#output\_this\_security\_group\_owner\_id) | The owner ID | | <a name="output_security_group_owner_id"></a> [security\_group\_owner\_id](#output\_security\_group\_owner\_id) | The owner ID |
| <a name="output_this_security_group_vpc_id"></a> [this\_security\_group\_vpc\_id](#output\_this\_security\_group\_vpc\_id) | The VPC ID | | <a name="output_security_group_vpc_id"></a> [security\_group\_vpc\_id](#output\_security\_group\_vpc\_id) | The VPC ID |
<!-- END OF PRE-COMMIT-TERRAFORM DOCS HOOK --> <!-- END OF PRE-COMMIT-TERRAFORM DOCS HOOK -->
output "this_security_group_id" { output "security_group_id" {
description = "The ID of the security group" description = "The ID of the security group"
value = module.sg.this_security_group_id value = module.sg.security_group_id
} }
output "this_security_group_vpc_id" { output "security_group_vpc_id" {
description = "The VPC ID" description = "The VPC ID"
value = module.sg.this_security_group_vpc_id value = module.sg.security_group_vpc_id
} }
output "this_security_group_owner_id" { output "security_group_owner_id" {
description = "The owner ID" description = "The owner ID"
value = module.sg.this_security_group_owner_id value = module.sg.security_group_owner_id
} }
output "this_security_group_name" { output "security_group_name" {
description = "The name of the security group" description = "The name of the security group"
value = module.sg.this_security_group_name value = module.sg.security_group_name
} }
output "this_security_group_description" { output "security_group_description" {
description = "The description of the security group" description = "The description of the security group"
value = module.sg.this_security_group_description value = module.sg.security_group_description
} }
...@@ -5,7 +5,7 @@ ...@@ -5,7 +5,7 @@
```hcl ```hcl
module "consul_security_group" { module "consul_security_group" {
source = "terraform-aws-modules/security-group/aws//modules/consul" source = "terraform-aws-modules/security-group/aws//modules/consul"
version = "~> 3.0" version = "~> 4.0"
# omitted... # omitted...
} }
...@@ -111,9 +111,9 @@ No resources. ...@@ -111,9 +111,9 @@ No resources.
| Name | Description | | Name | Description |
|------|-------------| |------|-------------|
| <a name="output_this_security_group_description"></a> [this\_security\_group\_description](#output\_this\_security\_group\_description) | The description of the security group | | <a name="output_security_group_description"></a> [security\_group\_description](#output\_security\_group\_description) | The description of the security group |
| <a name="output_this_security_group_id"></a> [this\_security\_group\_id](#output\_this\_security\_group\_id) | The ID of the security group | | <a name="output_security_group_id"></a> [security\_group\_id](#output\_security\_group\_id) | The ID of the security group |
| <a name="output_this_security_group_name"></a> [this\_security\_group\_name](#output\_this\_security\_group\_name) | The name of the security group | | <a name="output_security_group_name"></a> [security\_group\_name](#output\_security\_group\_name) | The name of the security group |
| <a name="output_this_security_group_owner_id"></a> [this\_security\_group\_owner\_id](#output\_this\_security\_group\_owner\_id) | The owner ID | | <a name="output_security_group_owner_id"></a> [security\_group\_owner\_id](#output\_security\_group\_owner\_id) | The owner ID |
| <a name="output_this_security_group_vpc_id"></a> [this\_security\_group\_vpc\_id](#output\_this\_security\_group\_vpc\_id) | The VPC ID | | <a name="output_security_group_vpc_id"></a> [security\_group\_vpc\_id](#output\_security\_group\_vpc\_id) | The VPC ID |
<!-- END OF PRE-COMMIT-TERRAFORM DOCS HOOK --> <!-- END OF PRE-COMMIT-TERRAFORM DOCS HOOK -->
output "this_security_group_id" { output "security_group_id" {
description = "The ID of the security group" description = "The ID of the security group"
value = module.sg.this_security_group_id value = module.sg.security_group_id
} }
output "this_security_group_vpc_id" { output "security_group_vpc_id" {
description = "The VPC ID" description = "The VPC ID"
value = module.sg.this_security_group_vpc_id value = module.sg.security_group_vpc_id
} }
output "this_security_group_owner_id" { output "security_group_owner_id" {
description = "The owner ID" description = "The owner ID"
value = module.sg.this_security_group_owner_id value = module.sg.security_group_owner_id
} }
output "this_security_group_name" { output "security_group_name" {
description = "The name of the security group" description = "The name of the security group"
value = module.sg.this_security_group_name value = module.sg.security_group_name
} }
output "this_security_group_description" { output "security_group_description" {
description = "The description of the security group" description = "The description of the security group"
value = module.sg.this_security_group_description value = module.sg.security_group_description
} }
...@@ -5,7 +5,7 @@ ...@@ -5,7 +5,7 @@
```hcl ```hcl
module "docker_swarm_security_group" { module "docker_swarm_security_group" {
source = "terraform-aws-modules/security-group/aws//modules/docker-swarm" source = "terraform-aws-modules/security-group/aws//modules/docker-swarm"
version = "~> 3.0" version = "~> 4.0"
# omitted... # omitted...
} }
...@@ -111,9 +111,9 @@ No resources. ...@@ -111,9 +111,9 @@ No resources.
| Name | Description | | Name | Description |
|------|-------------| |------|-------------|
| <a name="output_this_security_group_description"></a> [this\_security\_group\_description](#output\_this\_security\_group\_description) | The description of the security group | | <a name="output_security_group_description"></a> [security\_group\_description](#output\_security\_group\_description) | The description of the security group |
| <a name="output_this_security_group_id"></a> [this\_security\_group\_id](#output\_this\_security\_group\_id) | The ID of the security group | | <a name="output_security_group_id"></a> [security\_group\_id](#output\_security\_group\_id) | The ID of the security group |
| <a name="output_this_security_group_name"></a> [this\_security\_group\_name](#output\_this\_security\_group\_name) | The name of the security group | | <a name="output_security_group_name"></a> [security\_group\_name](#output\_security\_group\_name) | The name of the security group |
| <a name="output_this_security_group_owner_id"></a> [this\_security\_group\_owner\_id](#output\_this\_security\_group\_owner\_id) | The owner ID | | <a name="output_security_group_owner_id"></a> [security\_group\_owner\_id](#output\_security\_group\_owner\_id) | The owner ID |
| <a name="output_this_security_group_vpc_id"></a> [this\_security\_group\_vpc\_id](#output\_this\_security\_group\_vpc\_id) | The VPC ID | | <a name="output_security_group_vpc_id"></a> [security\_group\_vpc\_id](#output\_security\_group\_vpc\_id) | The VPC ID |
<!-- END OF PRE-COMMIT-TERRAFORM DOCS HOOK --> <!-- END OF PRE-COMMIT-TERRAFORM DOCS HOOK -->
output "this_security_group_id" { output "security_group_id" {
description = "The ID of the security group" description = "The ID of the security group"
value = module.sg.this_security_group_id value = module.sg.security_group_id
} }
output "this_security_group_vpc_id" { output "security_group_vpc_id" {
description = "The VPC ID" description = "The VPC ID"
value = module.sg.this_security_group_vpc_id value = module.sg.security_group_vpc_id
} }
output "this_security_group_owner_id" { output "security_group_owner_id" {
description = "The owner ID" description = "The owner ID"
value = module.sg.this_security_group_owner_id value = module.sg.security_group_owner_id
} }
output "this_security_group_name" { output "security_group_name" {
description = "The name of the security group" description = "The name of the security group"
value = module.sg.this_security_group_name value = module.sg.security_group_name
} }
output "this_security_group_description" { output "security_group_description" {
description = "The description of the security group" description = "The description of the security group"
value = module.sg.this_security_group_description value = module.sg.security_group_description
} }
...@@ -5,7 +5,7 @@ ...@@ -5,7 +5,7 @@
```hcl ```hcl
module "elasticsearch_security_group" { module "elasticsearch_security_group" {
source = "terraform-aws-modules/security-group/aws//modules/elasticsearch" source = "terraform-aws-modules/security-group/aws//modules/elasticsearch"
version = "~> 3.0" version = "~> 4.0"
# omitted... # omitted...
} }
...@@ -111,9 +111,9 @@ No resources. ...@@ -111,9 +111,9 @@ No resources.
| Name | Description | | Name | Description |
|------|-------------| |------|-------------|
| <a name="output_this_security_group_description"></a> [this\_security\_group\_description](#output\_this\_security\_group\_description) | The description of the security group | | <a name="output_security_group_description"></a> [security\_group\_description](#output\_security\_group\_description) | The description of the security group |
| <a name="output_this_security_group_id"></a> [this\_security\_group\_id](#output\_this\_security\_group\_id) | The ID of the security group | | <a name="output_security_group_id"></a> [security\_group\_id](#output\_security\_group\_id) | The ID of the security group |
| <a name="output_this_security_group_name"></a> [this\_security\_group\_name](#output\_this\_security\_group\_name) | The name of the security group | | <a name="output_security_group_name"></a> [security\_group\_name](#output\_security\_group\_name) | The name of the security group |
| <a name="output_this_security_group_owner_id"></a> [this\_security\_group\_owner\_id](#output\_this\_security\_group\_owner\_id) | The owner ID | | <a name="output_security_group_owner_id"></a> [security\_group\_owner\_id](#output\_security\_group\_owner\_id) | The owner ID |
| <a name="output_this_security_group_vpc_id"></a> [this\_security\_group\_vpc\_id](#output\_this\_security\_group\_vpc\_id) | The VPC ID | | <a name="output_security_group_vpc_id"></a> [security\_group\_vpc\_id](#output\_security\_group\_vpc\_id) | The VPC ID |
<!-- END OF PRE-COMMIT-TERRAFORM DOCS HOOK --> <!-- END OF PRE-COMMIT-TERRAFORM DOCS HOOK -->
output "this_security_group_id" { output "security_group_id" {
description = "The ID of the security group" description = "The ID of the security group"
value = module.sg.this_security_group_id value = module.sg.security_group_id
} }
output "this_security_group_vpc_id" { output "security_group_vpc_id" {
description = "The VPC ID" description = "The VPC ID"
value = module.sg.this_security_group_vpc_id value = module.sg.security_group_vpc_id
} }
output "this_security_group_owner_id" { output "security_group_owner_id" {
description = "The owner ID" description = "The owner ID"
value = module.sg.this_security_group_owner_id value = module.sg.security_group_owner_id
} }
output "this_security_group_name" { output "security_group_name" {
description = "The name of the security group" description = "The name of the security group"
value = module.sg.this_security_group_name value = module.sg.security_group_name
} }
output "this_security_group_description" { output "security_group_description" {
description = "The description of the security group" description = "The description of the security group"
value = module.sg.this_security_group_description value = module.sg.security_group_description
} }
...@@ -5,7 +5,7 @@ ...@@ -5,7 +5,7 @@
```hcl ```hcl
module "grafana_security_group" { module "grafana_security_group" {
source = "terraform-aws-modules/security-group/aws//modules/grafana" source = "terraform-aws-modules/security-group/aws//modules/grafana"
version = "~> 3.0" version = "~> 4.0"
# omitted... # omitted...
} }
...@@ -111,9 +111,9 @@ No resources. ...@@ -111,9 +111,9 @@ No resources.
| Name | Description | | Name | Description |
|------|-------------| |------|-------------|
| <a name="output_this_security_group_description"></a> [this\_security\_group\_description](#output\_this\_security\_group\_description) | The description of the security group | | <a name="output_security_group_description"></a> [security\_group\_description](#output\_security\_group\_description) | The description of the security group |
| <a name="output_this_security_group_id"></a> [this\_security\_group\_id](#output\_this\_security\_group\_id) | The ID of the security group | | <a name="output_security_group_id"></a> [security\_group\_id](#output\_security\_group\_id) | The ID of the security group |
| <a name="output_this_security_group_name"></a> [this\_security\_group\_name](#output\_this\_security\_group\_name) | The name of the security group | | <a name="output_security_group_name"></a> [security\_group\_name](#output\_security\_group\_name) | The name of the security group |
| <a name="output_this_security_group_owner_id"></a> [this\_security\_group\_owner\_id](#output\_this\_security\_group\_owner\_id) | The owner ID | | <a name="output_security_group_owner_id"></a> [security\_group\_owner\_id](#output\_security\_group\_owner\_id) | The owner ID |
| <a name="output_this_security_group_vpc_id"></a> [this\_security\_group\_vpc\_id](#output\_this\_security\_group\_vpc\_id) | The VPC ID | | <a name="output_security_group_vpc_id"></a> [security\_group\_vpc\_id](#output\_security\_group\_vpc\_id) | The VPC ID |
<!-- END OF PRE-COMMIT-TERRAFORM DOCS HOOK --> <!-- END OF PRE-COMMIT-TERRAFORM DOCS HOOK -->
output "this_security_group_id" { output "security_group_id" {
description = "The ID of the security group" description = "The ID of the security group"
value = module.sg.this_security_group_id value = module.sg.security_group_id
} }
output "this_security_group_vpc_id" { output "security_group_vpc_id" {
description = "The VPC ID" description = "The VPC ID"
value = module.sg.this_security_group_vpc_id value = module.sg.security_group_vpc_id
} }
output "this_security_group_owner_id" { output "security_group_owner_id" {
description = "The owner ID" description = "The owner ID"
value = module.sg.this_security_group_owner_id value = module.sg.security_group_owner_id
} }
output "this_security_group_name" { output "security_group_name" {
description = "The name of the security group" description = "The name of the security group"
value = module.sg.this_security_group_name value = module.sg.security_group_name
} }
output "this_security_group_description" { output "security_group_description" {
description = "The description of the security group" description = "The description of the security group"
value = module.sg.this_security_group_description value = module.sg.security_group_description
} }
...@@ -5,7 +5,7 @@ ...@@ -5,7 +5,7 @@
```hcl ```hcl
module "graphite_statsd_security_group" { module "graphite_statsd_security_group" {
source = "terraform-aws-modules/security-group/aws//modules/graphite-statsd" source = "terraform-aws-modules/security-group/aws//modules/graphite-statsd"
version = "~> 3.0" version = "~> 4.0"
# omitted... # omitted...
} }
...@@ -111,9 +111,9 @@ No resources. ...@@ -111,9 +111,9 @@ No resources.
| Name | Description | | Name | Description |
|------|-------------| |------|-------------|
| <a name="output_this_security_group_description"></a> [this\_security\_group\_description](#output\_this\_security\_group\_description) | The description of the security group | | <a name="output_security_group_description"></a> [security\_group\_description](#output\_security\_group\_description) | The description of the security group |
| <a name="output_this_security_group_id"></a> [this\_security\_group\_id](#output\_this\_security\_group\_id) | The ID of the security group | | <a name="output_security_group_id"></a> [security\_group\_id](#output\_security\_group\_id) | The ID of the security group |
| <a name="output_this_security_group_name"></a> [this\_security\_group\_name](#output\_this\_security\_group\_name) | The name of the security group | | <a name="output_security_group_name"></a> [security\_group\_name](#output\_security\_group\_name) | The name of the security group |
| <a name="output_this_security_group_owner_id"></a> [this\_security\_group\_owner\_id](#output\_this\_security\_group\_owner\_id) | The owner ID | | <a name="output_security_group_owner_id"></a> [security\_group\_owner\_id](#output\_security\_group\_owner\_id) | The owner ID |
| <a name="output_this_security_group_vpc_id"></a> [this\_security\_group\_vpc\_id](#output\_this\_security\_group\_vpc\_id) | The VPC ID | | <a name="output_security_group_vpc_id"></a> [security\_group\_vpc\_id](#output\_security\_group\_vpc\_id) | The VPC ID |
<!-- END OF PRE-COMMIT-TERRAFORM DOCS HOOK --> <!-- END OF PRE-COMMIT-TERRAFORM DOCS HOOK -->
output "this_security_group_id" { output "security_group_id" {
description = "The ID of the security group" description = "The ID of the security group"
value = module.sg.this_security_group_id value = module.sg.security_group_id
} }
output "this_security_group_vpc_id" { output "security_group_vpc_id" {
description = "The VPC ID" description = "The VPC ID"
value = module.sg.this_security_group_vpc_id value = module.sg.security_group_vpc_id
} }
output "this_security_group_owner_id" { output "security_group_owner_id" {
description = "The owner ID" description = "The owner ID"
value = module.sg.this_security_group_owner_id value = module.sg.security_group_owner_id
} }
output "this_security_group_name" { output "security_group_name" {
description = "The name of the security group" description = "The name of the security group"
value = module.sg.this_security_group_name value = module.sg.security_group_name
} }
output "this_security_group_description" { output "security_group_description" {
description = "The description of the security group" description = "The description of the security group"
value = module.sg.this_security_group_description value = module.sg.security_group_description
} }
...@@ -5,7 +5,7 @@ ...@@ -5,7 +5,7 @@
```hcl ```hcl
module "http_80_security_group" { module "http_80_security_group" {
source = "terraform-aws-modules/security-group/aws//modules/http-80" source = "terraform-aws-modules/security-group/aws//modules/http-80"
version = "~> 3.0" version = "~> 4.0"
# omitted... # omitted...
} }
...@@ -111,9 +111,9 @@ No resources. ...@@ -111,9 +111,9 @@ No resources.
| Name | Description | | Name | Description |
|------|-------------| |------|-------------|
| <a name="output_this_security_group_description"></a> [this\_security\_group\_description](#output\_this\_security\_group\_description) | The description of the security group | | <a name="output_security_group_description"></a> [security\_group\_description](#output\_security\_group\_description) | The description of the security group |
| <a name="output_this_security_group_id"></a> [this\_security\_group\_id](#output\_this\_security\_group\_id) | The ID of the security group | | <a name="output_security_group_id"></a> [security\_group\_id](#output\_security\_group\_id) | The ID of the security group |
| <a name="output_this_security_group_name"></a> [this\_security\_group\_name](#output\_this\_security\_group\_name) | The name of the security group | | <a name="output_security_group_name"></a> [security\_group\_name](#output\_security\_group\_name) | The name of the security group |
| <a name="output_this_security_group_owner_id"></a> [this\_security\_group\_owner\_id](#output\_this\_security\_group\_owner\_id) | The owner ID | | <a name="output_security_group_owner_id"></a> [security\_group\_owner\_id](#output\_security\_group\_owner\_id) | The owner ID |
| <a name="output_this_security_group_vpc_id"></a> [this\_security\_group\_vpc\_id](#output\_this\_security\_group\_vpc\_id) | The VPC ID | | <a name="output_security_group_vpc_id"></a> [security\_group\_vpc\_id](#output\_security\_group\_vpc\_id) | The VPC ID |
<!-- END OF PRE-COMMIT-TERRAFORM DOCS HOOK --> <!-- END OF PRE-COMMIT-TERRAFORM DOCS HOOK -->
output "this_security_group_id" { output "security_group_id" {
description = "The ID of the security group" description = "The ID of the security group"
value = module.sg.this_security_group_id value = module.sg.security_group_id
} }
output "this_security_group_vpc_id" { output "security_group_vpc_id" {
description = "The VPC ID" description = "The VPC ID"
value = module.sg.this_security_group_vpc_id value = module.sg.security_group_vpc_id
} }
output "this_security_group_owner_id" { output "security_group_owner_id" {
description = "The owner ID" description = "The owner ID"
value = module.sg.this_security_group_owner_id value = module.sg.security_group_owner_id
} }
output "this_security_group_name" { output "security_group_name" {
description = "The name of the security group" description = "The name of the security group"
value = module.sg.this_security_group_name value = module.sg.security_group_name
} }
output "this_security_group_description" { output "security_group_description" {
description = "The description of the security group" description = "The description of the security group"
value = module.sg.this_security_group_description value = module.sg.security_group_description
} }
...@@ -5,7 +5,7 @@ ...@@ -5,7 +5,7 @@
```hcl ```hcl
module "http_8080_security_group" { module "http_8080_security_group" {
source = "terraform-aws-modules/security-group/aws//modules/http-8080" source = "terraform-aws-modules/security-group/aws//modules/http-8080"
version = "~> 3.0" version = "~> 4.0"
# omitted... # omitted...
} }
...@@ -111,9 +111,9 @@ No resources. ...@@ -111,9 +111,9 @@ No resources.
| Name | Description | | Name | Description |
|------|-------------| |------|-------------|
| <a name="output_this_security_group_description"></a> [this\_security\_group\_description](#output\_this\_security\_group\_description) | The description of the security group | | <a name="output_security_group_description"></a> [security\_group\_description](#output\_security\_group\_description) | The description of the security group |
| <a name="output_this_security_group_id"></a> [this\_security\_group\_id](#output\_this\_security\_group\_id) | The ID of the security group | | <a name="output_security_group_id"></a> [security\_group\_id](#output\_security\_group\_id) | The ID of the security group |
| <a name="output_this_security_group_name"></a> [this\_security\_group\_name](#output\_this\_security\_group\_name) | The name of the security group | | <a name="output_security_group_name"></a> [security\_group\_name](#output\_security\_group\_name) | The name of the security group |
| <a name="output_this_security_group_owner_id"></a> [this\_security\_group\_owner\_id](#output\_this\_security\_group\_owner\_id) | The owner ID | | <a name="output_security_group_owner_id"></a> [security\_group\_owner\_id](#output\_security\_group\_owner\_id) | The owner ID |
| <a name="output_this_security_group_vpc_id"></a> [this\_security\_group\_vpc\_id](#output\_this\_security\_group\_vpc\_id) | The VPC ID | | <a name="output_security_group_vpc_id"></a> [security\_group\_vpc\_id](#output\_security\_group\_vpc\_id) | The VPC ID |
<!-- END OF PRE-COMMIT-TERRAFORM DOCS HOOK --> <!-- END OF PRE-COMMIT-TERRAFORM DOCS HOOK -->
output "this_security_group_id" { output "security_group_id" {
description = "The ID of the security group" description = "The ID of the security group"
value = module.sg.this_security_group_id value = module.sg.security_group_id
} }
output "this_security_group_vpc_id" { output "security_group_vpc_id" {
description = "The VPC ID" description = "The VPC ID"
value = module.sg.this_security_group_vpc_id value = module.sg.security_group_vpc_id
} }
output "this_security_group_owner_id" { output "security_group_owner_id" {
description = "The owner ID" description = "The owner ID"
value = module.sg.this_security_group_owner_id value = module.sg.security_group_owner_id
} }
output "this_security_group_name" { output "security_group_name" {
description = "The name of the security group" description = "The name of the security group"
value = module.sg.this_security_group_name value = module.sg.security_group_name
} }
output "this_security_group_description" { output "security_group_description" {
description = "The description of the security group" description = "The description of the security group"
value = module.sg.this_security_group_description value = module.sg.security_group_description
} }
...@@ -5,7 +5,7 @@ ...@@ -5,7 +5,7 @@
```hcl ```hcl
module "https_443_security_group" { module "https_443_security_group" {
source = "terraform-aws-modules/security-group/aws//modules/https-443" source = "terraform-aws-modules/security-group/aws//modules/https-443"
version = "~> 3.0" version = "~> 4.0"
# omitted... # omitted...
} }
...@@ -111,9 +111,9 @@ No resources. ...@@ -111,9 +111,9 @@ No resources.
| Name | Description | | Name | Description |
|------|-------------| |------|-------------|
| <a name="output_this_security_group_description"></a> [this\_security\_group\_description](#output\_this\_security\_group\_description) | The description of the security group | | <a name="output_security_group_description"></a> [security\_group\_description](#output\_security\_group\_description) | The description of the security group |
| <a name="output_this_security_group_id"></a> [this\_security\_group\_id](#output\_this\_security\_group\_id) | The ID of the security group | | <a name="output_security_group_id"></a> [security\_group\_id](#output\_security\_group\_id) | The ID of the security group |
| <a name="output_this_security_group_name"></a> [this\_security\_group\_name](#output\_this\_security\_group\_name) | The name of the security group | | <a name="output_security_group_name"></a> [security\_group\_name](#output\_security\_group\_name) | The name of the security group |
| <a name="output_this_security_group_owner_id"></a> [this\_security\_group\_owner\_id](#output\_this\_security\_group\_owner\_id) | The owner ID | | <a name="output_security_group_owner_id"></a> [security\_group\_owner\_id](#output\_security\_group\_owner\_id) | The owner ID |
| <a name="output_this_security_group_vpc_id"></a> [this\_security\_group\_vpc\_id](#output\_this\_security\_group\_vpc\_id) | The VPC ID | | <a name="output_security_group_vpc_id"></a> [security\_group\_vpc\_id](#output\_security\_group\_vpc\_id) | The VPC ID |
<!-- END OF PRE-COMMIT-TERRAFORM DOCS HOOK --> <!-- END OF PRE-COMMIT-TERRAFORM DOCS HOOK -->
output "this_security_group_id" { output "security_group_id" {
description = "The ID of the security group" description = "The ID of the security group"
value = module.sg.this_security_group_id value = module.sg.security_group_id
} }
output "this_security_group_vpc_id" { output "security_group_vpc_id" {
description = "The VPC ID" description = "The VPC ID"
value = module.sg.this_security_group_vpc_id value = module.sg.security_group_vpc_id
} }
output "this_security_group_owner_id" { output "security_group_owner_id" {
description = "The owner ID" description = "The owner ID"
value = module.sg.this_security_group_owner_id value = module.sg.security_group_owner_id
} }
output "this_security_group_name" { output "security_group_name" {
description = "The name of the security group" description = "The name of the security group"
value = module.sg.this_security_group_name value = module.sg.security_group_name
} }
output "this_security_group_description" { output "security_group_description" {
description = "The description of the security group" description = "The description of the security group"
value = module.sg.this_security_group_description value = module.sg.security_group_description
} }
...@@ -5,7 +5,7 @@ ...@@ -5,7 +5,7 @@
```hcl ```hcl
module "https_8443_security_group" { module "https_8443_security_group" {
source = "terraform-aws-modules/security-group/aws//modules/https-8443" source = "terraform-aws-modules/security-group/aws//modules/https-8443"
version = "~> 3.0" version = "~> 4.0"
# omitted... # omitted...
} }
...@@ -111,9 +111,9 @@ No resources. ...@@ -111,9 +111,9 @@ No resources.
| Name | Description | | Name | Description |
|------|-------------| |------|-------------|
| <a name="output_this_security_group_description"></a> [this\_security\_group\_description](#output\_this\_security\_group\_description) | The description of the security group | | <a name="output_security_group_description"></a> [security\_group\_description](#output\_security\_group\_description) | The description of the security group |
| <a name="output_this_security_group_id"></a> [this\_security\_group\_id](#output\_this\_security\_group\_id) | The ID of the security group | | <a name="output_security_group_id"></a> [security\_group\_id](#output\_security\_group\_id) | The ID of the security group |
| <a name="output_this_security_group_name"></a> [this\_security\_group\_name](#output\_this\_security\_group\_name) | The name of the security group | | <a name="output_security_group_name"></a> [security\_group\_name](#output\_security\_group\_name) | The name of the security group |
| <a name="output_this_security_group_owner_id"></a> [this\_security\_group\_owner\_id](#output\_this\_security\_group\_owner\_id) | The owner ID | | <a name="output_security_group_owner_id"></a> [security\_group\_owner\_id](#output\_security\_group\_owner\_id) | The owner ID |
| <a name="output_this_security_group_vpc_id"></a> [this\_security\_group\_vpc\_id](#output\_this\_security\_group\_vpc\_id) | The VPC ID | | <a name="output_security_group_vpc_id"></a> [security\_group\_vpc\_id](#output\_security\_group\_vpc\_id) | The VPC ID |
<!-- END OF PRE-COMMIT-TERRAFORM DOCS HOOK --> <!-- END OF PRE-COMMIT-TERRAFORM DOCS HOOK -->
output "this_security_group_id" { output "security_group_id" {
description = "The ID of the security group" description = "The ID of the security group"
value = module.sg.this_security_group_id value = module.sg.security_group_id
} }
output "this_security_group_vpc_id" { output "security_group_vpc_id" {
description = "The VPC ID" description = "The VPC ID"
value = module.sg.this_security_group_vpc_id value = module.sg.security_group_vpc_id
} }
output "this_security_group_owner_id" { output "security_group_owner_id" {
description = "The owner ID" description = "The owner ID"
value = module.sg.this_security_group_owner_id value = module.sg.security_group_owner_id
} }
output "this_security_group_name" { output "security_group_name" {
description = "The name of the security group" description = "The name of the security group"
value = module.sg.this_security_group_name value = module.sg.security_group_name
} }
output "this_security_group_description" { output "security_group_description" {
description = "The description of the security group" description = "The description of the security group"
value = module.sg.this_security_group_description value = module.sg.security_group_description
} }
...@@ -5,7 +5,7 @@ ...@@ -5,7 +5,7 @@
```hcl ```hcl
module "ipsec_4500_security_group" { module "ipsec_4500_security_group" {
source = "terraform-aws-modules/security-group/aws//modules/ipsec-4500" source = "terraform-aws-modules/security-group/aws//modules/ipsec-4500"
version = "~> 3.0" version = "~> 4.0"
# omitted... # omitted...
} }
...@@ -111,9 +111,9 @@ No resources. ...@@ -111,9 +111,9 @@ No resources.
| Name | Description | | Name | Description |
|------|-------------| |------|-------------|
| <a name="output_this_security_group_description"></a> [this\_security\_group\_description](#output\_this\_security\_group\_description) | The description of the security group | | <a name="output_security_group_description"></a> [security\_group\_description](#output\_security\_group\_description) | The description of the security group |
| <a name="output_this_security_group_id"></a> [this\_security\_group\_id](#output\_this\_security\_group\_id) | The ID of the security group | | <a name="output_security_group_id"></a> [security\_group\_id](#output\_security\_group\_id) | The ID of the security group |
| <a name="output_this_security_group_name"></a> [this\_security\_group\_name](#output\_this\_security\_group\_name) | The name of the security group | | <a name="output_security_group_name"></a> [security\_group\_name](#output\_security\_group\_name) | The name of the security group |
| <a name="output_this_security_group_owner_id"></a> [this\_security\_group\_owner\_id](#output\_this\_security\_group\_owner\_id) | The owner ID | | <a name="output_security_group_owner_id"></a> [security\_group\_owner\_id](#output\_security\_group\_owner\_id) | The owner ID |
| <a name="output_this_security_group_vpc_id"></a> [this\_security\_group\_vpc\_id](#output\_this\_security\_group\_vpc\_id) | The VPC ID | | <a name="output_security_group_vpc_id"></a> [security\_group\_vpc\_id](#output\_security\_group\_vpc\_id) | The VPC ID |
<!-- END OF PRE-COMMIT-TERRAFORM DOCS HOOK --> <!-- END OF PRE-COMMIT-TERRAFORM DOCS HOOK -->
output "this_security_group_id" { output "security_group_id" {
description = "The ID of the security group" description = "The ID of the security group"
value = module.sg.this_security_group_id value = module.sg.security_group_id
} }
output "this_security_group_vpc_id" { output "security_group_vpc_id" {
description = "The VPC ID" description = "The VPC ID"
value = module.sg.this_security_group_vpc_id value = module.sg.security_group_vpc_id
} }
output "this_security_group_owner_id" { output "security_group_owner_id" {
description = "The owner ID" description = "The owner ID"
value = module.sg.this_security_group_owner_id value = module.sg.security_group_owner_id
} }
output "this_security_group_name" { output "security_group_name" {
description = "The name of the security group" description = "The name of the security group"
value = module.sg.this_security_group_name value = module.sg.security_group_name
} }
output "this_security_group_description" { output "security_group_description" {
description = "The description of the security group" description = "The description of the security group"
value = module.sg.this_security_group_description value = module.sg.security_group_description
} }
...@@ -5,7 +5,7 @@ ...@@ -5,7 +5,7 @@
```hcl ```hcl
module "ipsec_500_security_group" { module "ipsec_500_security_group" {
source = "terraform-aws-modules/security-group/aws//modules/ipsec-500" source = "terraform-aws-modules/security-group/aws//modules/ipsec-500"
version = "~> 3.0" version = "~> 4.0"
# omitted... # omitted...
} }
...@@ -111,9 +111,9 @@ No resources. ...@@ -111,9 +111,9 @@ No resources.
| Name | Description | | Name | Description |
|------|-------------| |------|-------------|
| <a name="output_this_security_group_description"></a> [this\_security\_group\_description](#output\_this\_security\_group\_description) | The description of the security group | | <a name="output_security_group_description"></a> [security\_group\_description](#output\_security\_group\_description) | The description of the security group |
| <a name="output_this_security_group_id"></a> [this\_security\_group\_id](#output\_this\_security\_group\_id) | The ID of the security group | | <a name="output_security_group_id"></a> [security\_group\_id](#output\_security\_group\_id) | The ID of the security group |
| <a name="output_this_security_group_name"></a> [this\_security\_group\_name](#output\_this\_security\_group\_name) | The name of the security group | | <a name="output_security_group_name"></a> [security\_group\_name](#output\_security\_group\_name) | The name of the security group |
| <a name="output_this_security_group_owner_id"></a> [this\_security\_group\_owner\_id](#output\_this\_security\_group\_owner\_id) | The owner ID | | <a name="output_security_group_owner_id"></a> [security\_group\_owner\_id](#output\_security\_group\_owner\_id) | The owner ID |
| <a name="output_this_security_group_vpc_id"></a> [this\_security\_group\_vpc\_id](#output\_this\_security\_group\_vpc\_id) | The VPC ID | | <a name="output_security_group_vpc_id"></a> [security\_group\_vpc\_id](#output\_security\_group\_vpc\_id) | The VPC ID |
<!-- END OF PRE-COMMIT-TERRAFORM DOCS HOOK --> <!-- END OF PRE-COMMIT-TERRAFORM DOCS HOOK -->
output "this_security_group_id" { output "security_group_id" {
description = "The ID of the security group" description = "The ID of the security group"
value = module.sg.this_security_group_id value = module.sg.security_group_id
} }
output "this_security_group_vpc_id" { output "security_group_vpc_id" {
description = "The VPC ID" description = "The VPC ID"
value = module.sg.this_security_group_vpc_id value = module.sg.security_group_vpc_id
} }
output "this_security_group_owner_id" { output "security_group_owner_id" {
description = "The owner ID" description = "The owner ID"
value = module.sg.this_security_group_owner_id value = module.sg.security_group_owner_id
} }
output "this_security_group_name" { output "security_group_name" {
description = "The name of the security group" description = "The name of the security group"
value = module.sg.this_security_group_name value = module.sg.security_group_name
} }
output "this_security_group_description" { output "security_group_description" {
description = "The description of the security group" description = "The description of the security group"
value = module.sg.this_security_group_description value = module.sg.security_group_description
} }
...@@ -5,7 +5,7 @@ ...@@ -5,7 +5,7 @@
```hcl ```hcl
module "kafka_security_group" { module "kafka_security_group" {
source = "terraform-aws-modules/security-group/aws//modules/kafka" source = "terraform-aws-modules/security-group/aws//modules/kafka"
version = "~> 3.0" version = "~> 4.0"
# omitted... # omitted...
} }
...@@ -111,9 +111,9 @@ No resources. ...@@ -111,9 +111,9 @@ No resources.
| Name | Description | | Name | Description |
|------|-------------| |------|-------------|
| <a name="output_this_security_group_description"></a> [this\_security\_group\_description](#output\_this\_security\_group\_description) | The description of the security group | | <a name="output_security_group_description"></a> [security\_group\_description](#output\_security\_group\_description) | The description of the security group |
| <a name="output_this_security_group_id"></a> [this\_security\_group\_id](#output\_this\_security\_group\_id) | The ID of the security group | | <a name="output_security_group_id"></a> [security\_group\_id](#output\_security\_group\_id) | The ID of the security group |
| <a name="output_this_security_group_name"></a> [this\_security\_group\_name](#output\_this\_security\_group\_name) | The name of the security group | | <a name="output_security_group_name"></a> [security\_group\_name](#output\_security\_group\_name) | The name of the security group |
| <a name="output_this_security_group_owner_id"></a> [this\_security\_group\_owner\_id](#output\_this\_security\_group\_owner\_id) | The owner ID | | <a name="output_security_group_owner_id"></a> [security\_group\_owner\_id](#output\_security\_group\_owner\_id) | The owner ID |
| <a name="output_this_security_group_vpc_id"></a> [this\_security\_group\_vpc\_id](#output\_this\_security\_group\_vpc\_id) | The VPC ID | | <a name="output_security_group_vpc_id"></a> [security\_group\_vpc\_id](#output\_security\_group\_vpc\_id) | The VPC ID |
<!-- END OF PRE-COMMIT-TERRAFORM DOCS HOOK --> <!-- END OF PRE-COMMIT-TERRAFORM DOCS HOOK -->
output "this_security_group_id" { output "security_group_id" {
description = "The ID of the security group" description = "The ID of the security group"
value = module.sg.this_security_group_id value = module.sg.security_group_id
} }
output "this_security_group_vpc_id" { output "security_group_vpc_id" {
description = "The VPC ID" description = "The VPC ID"
value = module.sg.this_security_group_vpc_id value = module.sg.security_group_vpc_id
} }
output "this_security_group_owner_id" { output "security_group_owner_id" {
description = "The owner ID" description = "The owner ID"
value = module.sg.this_security_group_owner_id value = module.sg.security_group_owner_id
} }
output "this_security_group_name" { output "security_group_name" {
description = "The name of the security group" description = "The name of the security group"
value = module.sg.this_security_group_name value = module.sg.security_group_name
} }
output "this_security_group_description" { output "security_group_description" {
description = "The description of the security group" description = "The description of the security group"
value = module.sg.this_security_group_description value = module.sg.security_group_description
} }
...@@ -5,7 +5,7 @@ ...@@ -5,7 +5,7 @@
```hcl ```hcl
module "kibana_security_group" { module "kibana_security_group" {
source = "terraform-aws-modules/security-group/aws//modules/kibana" source = "terraform-aws-modules/security-group/aws//modules/kibana"
version = "~> 3.0" version = "~> 4.0"
# omitted... # omitted...
} }
...@@ -111,9 +111,9 @@ No resources. ...@@ -111,9 +111,9 @@ No resources.
| Name | Description | | Name | Description |
|------|-------------| |------|-------------|
| <a name="output_this_security_group_description"></a> [this\_security\_group\_description](#output\_this\_security\_group\_description) | The description of the security group | | <a name="output_security_group_description"></a> [security\_group\_description](#output\_security\_group\_description) | The description of the security group |
| <a name="output_this_security_group_id"></a> [this\_security\_group\_id](#output\_this\_security\_group\_id) | The ID of the security group | | <a name="output_security_group_id"></a> [security\_group\_id](#output\_security\_group\_id) | The ID of the security group |
| <a name="output_this_security_group_name"></a> [this\_security\_group\_name](#output\_this\_security\_group\_name) | The name of the security group | | <a name="output_security_group_name"></a> [security\_group\_name](#output\_security\_group\_name) | The name of the security group |
| <a name="output_this_security_group_owner_id"></a> [this\_security\_group\_owner\_id](#output\_this\_security\_group\_owner\_id) | The owner ID | | <a name="output_security_group_owner_id"></a> [security\_group\_owner\_id](#output\_security\_group\_owner\_id) | The owner ID |
| <a name="output_this_security_group_vpc_id"></a> [this\_security\_group\_vpc\_id](#output\_this\_security\_group\_vpc\_id) | The VPC ID | | <a name="output_security_group_vpc_id"></a> [security\_group\_vpc\_id](#output\_security\_group\_vpc\_id) | The VPC ID |
<!-- END OF PRE-COMMIT-TERRAFORM DOCS HOOK --> <!-- END OF PRE-COMMIT-TERRAFORM DOCS HOOK -->
output "this_security_group_id" { output "security_group_id" {
description = "The ID of the security group" description = "The ID of the security group"
value = module.sg.this_security_group_id value = module.sg.security_group_id
} }
output "this_security_group_vpc_id" { output "security_group_vpc_id" {
description = "The VPC ID" description = "The VPC ID"
value = module.sg.this_security_group_vpc_id value = module.sg.security_group_vpc_id
} }
output "this_security_group_owner_id" { output "security_group_owner_id" {
description = "The owner ID" description = "The owner ID"
value = module.sg.this_security_group_owner_id value = module.sg.security_group_owner_id
} }
output "this_security_group_name" { output "security_group_name" {
description = "The name of the security group" description = "The name of the security group"
value = module.sg.this_security_group_name value = module.sg.security_group_name
} }
output "this_security_group_description" { output "security_group_description" {
description = "The description of the security group" description = "The description of the security group"
value = module.sg.this_security_group_description value = module.sg.security_group_description
} }
...@@ -5,7 +5,7 @@ ...@@ -5,7 +5,7 @@
```hcl ```hcl
module "kubernetes_api_security_group" { module "kubernetes_api_security_group" {
source = "terraform-aws-modules/security-group/aws//modules/kubernetes-api" source = "terraform-aws-modules/security-group/aws//modules/kubernetes-api"
version = "~> 3.0" version = "~> 4.0"
# omitted... # omitted...
} }
...@@ -111,9 +111,9 @@ No resources. ...@@ -111,9 +111,9 @@ No resources.
| Name | Description | | Name | Description |
|------|-------------| |------|-------------|
| <a name="output_this_security_group_description"></a> [this\_security\_group\_description](#output\_this\_security\_group\_description) | The description of the security group | | <a name="output_security_group_description"></a> [security\_group\_description](#output\_security\_group\_description) | The description of the security group |
| <a name="output_this_security_group_id"></a> [this\_security\_group\_id](#output\_this\_security\_group\_id) | The ID of the security group | | <a name="output_security_group_id"></a> [security\_group\_id](#output\_security\_group\_id) | The ID of the security group |
| <a name="output_this_security_group_name"></a> [this\_security\_group\_name](#output\_this\_security\_group\_name) | The name of the security group | | <a name="output_security_group_name"></a> [security\_group\_name](#output\_security\_group\_name) | The name of the security group |
| <a name="output_this_security_group_owner_id"></a> [this\_security\_group\_owner\_id](#output\_this\_security\_group\_owner\_id) | The owner ID | | <a name="output_security_group_owner_id"></a> [security\_group\_owner\_id](#output\_security\_group\_owner\_id) | The owner ID |
| <a name="output_this_security_group_vpc_id"></a> [this\_security\_group\_vpc\_id](#output\_this\_security\_group\_vpc\_id) | The VPC ID | | <a name="output_security_group_vpc_id"></a> [security\_group\_vpc\_id](#output\_security\_group\_vpc\_id) | The VPC ID |
<!-- END OF PRE-COMMIT-TERRAFORM DOCS HOOK --> <!-- END OF PRE-COMMIT-TERRAFORM DOCS HOOK -->
output "this_security_group_id" { output "security_group_id" {
description = "The ID of the security group" description = "The ID of the security group"
value = module.sg.this_security_group_id value = module.sg.security_group_id
} }
output "this_security_group_vpc_id" { output "security_group_vpc_id" {
description = "The VPC ID" description = "The VPC ID"
value = module.sg.this_security_group_vpc_id value = module.sg.security_group_vpc_id
} }
output "this_security_group_owner_id" { output "security_group_owner_id" {
description = "The owner ID" description = "The owner ID"
value = module.sg.this_security_group_owner_id value = module.sg.security_group_owner_id
} }
output "this_security_group_name" { output "security_group_name" {
description = "The name of the security group" description = "The name of the security group"
value = module.sg.this_security_group_name value = module.sg.security_group_name
} }
output "this_security_group_description" { output "security_group_description" {
description = "The description of the security group" description = "The description of the security group"
value = module.sg.this_security_group_description value = module.sg.security_group_description
} }
...@@ -5,7 +5,7 @@ ...@@ -5,7 +5,7 @@
```hcl ```hcl
module "ldap_security_group" { module "ldap_security_group" {
source = "terraform-aws-modules/security-group/aws//modules/ldap" source = "terraform-aws-modules/security-group/aws//modules/ldap"
version = "~> 3.0" version = "~> 4.0"
# omitted... # omitted...
} }
...@@ -111,9 +111,9 @@ No resources. ...@@ -111,9 +111,9 @@ No resources.
| Name | Description | | Name | Description |
|------|-------------| |------|-------------|
| <a name="output_this_security_group_description"></a> [this\_security\_group\_description](#output\_this\_security\_group\_description) | The description of the security group | | <a name="output_security_group_description"></a> [security\_group\_description](#output\_security\_group\_description) | The description of the security group |
| <a name="output_this_security_group_id"></a> [this\_security\_group\_id](#output\_this\_security\_group\_id) | The ID of the security group | | <a name="output_security_group_id"></a> [security\_group\_id](#output\_security\_group\_id) | The ID of the security group |
| <a name="output_this_security_group_name"></a> [this\_security\_group\_name](#output\_this\_security\_group\_name) | The name of the security group | | <a name="output_security_group_name"></a> [security\_group\_name](#output\_security\_group\_name) | The name of the security group |
| <a name="output_this_security_group_owner_id"></a> [this\_security\_group\_owner\_id](#output\_this\_security\_group\_owner\_id) | The owner ID | | <a name="output_security_group_owner_id"></a> [security\_group\_owner\_id](#output\_security\_group\_owner\_id) | The owner ID |
| <a name="output_this_security_group_vpc_id"></a> [this\_security\_group\_vpc\_id](#output\_this\_security\_group\_vpc\_id) | The VPC ID | | <a name="output_security_group_vpc_id"></a> [security\_group\_vpc\_id](#output\_security\_group\_vpc\_id) | The VPC ID |
<!-- END OF PRE-COMMIT-TERRAFORM DOCS HOOK --> <!-- END OF PRE-COMMIT-TERRAFORM DOCS HOOK -->
output "this_security_group_id" { output "security_group_id" {
description = "The ID of the security group" description = "The ID of the security group"
value = module.sg.this_security_group_id value = module.sg.security_group_id
} }
output "this_security_group_vpc_id" { output "security_group_vpc_id" {
description = "The VPC ID" description = "The VPC ID"
value = module.sg.this_security_group_vpc_id value = module.sg.security_group_vpc_id
} }
output "this_security_group_owner_id" { output "security_group_owner_id" {
description = "The owner ID" description = "The owner ID"
value = module.sg.this_security_group_owner_id value = module.sg.security_group_owner_id
} }
output "this_security_group_name" { output "security_group_name" {
description = "The name of the security group" description = "The name of the security group"
value = module.sg.this_security_group_name value = module.sg.security_group_name
} }
output "this_security_group_description" { output "security_group_description" {
description = "The description of the security group" description = "The description of the security group"
value = module.sg.this_security_group_description value = module.sg.security_group_description
} }
...@@ -5,7 +5,7 @@ ...@@ -5,7 +5,7 @@
```hcl ```hcl
module "ldaps_security_group" { module "ldaps_security_group" {
source = "terraform-aws-modules/security-group/aws//modules/ldaps" source = "terraform-aws-modules/security-group/aws//modules/ldaps"
version = "~> 3.0" version = "~> 4.0"
# omitted... # omitted...
} }
...@@ -111,9 +111,9 @@ No resources. ...@@ -111,9 +111,9 @@ No resources.
| Name | Description | | Name | Description |
|------|-------------| |------|-------------|
| <a name="output_this_security_group_description"></a> [this\_security\_group\_description](#output\_this\_security\_group\_description) | The description of the security group | | <a name="output_security_group_description"></a> [security\_group\_description](#output\_security\_group\_description) | The description of the security group |
| <a name="output_this_security_group_id"></a> [this\_security\_group\_id](#output\_this\_security\_group\_id) | The ID of the security group | | <a name="output_security_group_id"></a> [security\_group\_id](#output\_security\_group\_id) | The ID of the security group |
| <a name="output_this_security_group_name"></a> [this\_security\_group\_name](#output\_this\_security\_group\_name) | The name of the security group | | <a name="output_security_group_name"></a> [security\_group\_name](#output\_security\_group\_name) | The name of the security group |
| <a name="output_this_security_group_owner_id"></a> [this\_security\_group\_owner\_id](#output\_this\_security\_group\_owner\_id) | The owner ID | | <a name="output_security_group_owner_id"></a> [security\_group\_owner\_id](#output\_security\_group\_owner\_id) | The owner ID |
| <a name="output_this_security_group_vpc_id"></a> [this\_security\_group\_vpc\_id](#output\_this\_security\_group\_vpc\_id) | The VPC ID | | <a name="output_security_group_vpc_id"></a> [security\_group\_vpc\_id](#output\_security\_group\_vpc\_id) | The VPC ID |
<!-- END OF PRE-COMMIT-TERRAFORM DOCS HOOK --> <!-- END OF PRE-COMMIT-TERRAFORM DOCS HOOK -->
output "this_security_group_id" { output "security_group_id" {
description = "The ID of the security group" description = "The ID of the security group"
value = module.sg.this_security_group_id value = module.sg.security_group_id
} }
output "this_security_group_vpc_id" { output "security_group_vpc_id" {
description = "The VPC ID" description = "The VPC ID"
value = module.sg.this_security_group_vpc_id value = module.sg.security_group_vpc_id
} }
output "this_security_group_owner_id" { output "security_group_owner_id" {
description = "The owner ID" description = "The owner ID"
value = module.sg.this_security_group_owner_id value = module.sg.security_group_owner_id
} }
output "this_security_group_name" { output "security_group_name" {
description = "The name of the security group" description = "The name of the security group"
value = module.sg.this_security_group_name value = module.sg.security_group_name
} }
output "this_security_group_description" { output "security_group_description" {
description = "The description of the security group" description = "The description of the security group"
value = module.sg.this_security_group_description value = module.sg.security_group_description
} }
...@@ -5,7 +5,7 @@ ...@@ -5,7 +5,7 @@
```hcl ```hcl
module "logstash_security_group" { module "logstash_security_group" {
source = "terraform-aws-modules/security-group/aws//modules/logstash" source = "terraform-aws-modules/security-group/aws//modules/logstash"
version = "~> 3.0" version = "~> 4.0"
# omitted... # omitted...
} }
...@@ -111,9 +111,9 @@ No resources. ...@@ -111,9 +111,9 @@ No resources.
| Name | Description | | Name | Description |
|------|-------------| |------|-------------|
| <a name="output_this_security_group_description"></a> [this\_security\_group\_description](#output\_this\_security\_group\_description) | The description of the security group | | <a name="output_security_group_description"></a> [security\_group\_description](#output\_security\_group\_description) | The description of the security group |
| <a name="output_this_security_group_id"></a> [this\_security\_group\_id](#output\_this\_security\_group\_id) | The ID of the security group | | <a name="output_security_group_id"></a> [security\_group\_id](#output\_security\_group\_id) | The ID of the security group |
| <a name="output_this_security_group_name"></a> [this\_security\_group\_name](#output\_this\_security\_group\_name) | The name of the security group | | <a name="output_security_group_name"></a> [security\_group\_name](#output\_security\_group\_name) | The name of the security group |
| <a name="output_this_security_group_owner_id"></a> [this\_security\_group\_owner\_id](#output\_this\_security\_group\_owner\_id) | The owner ID | | <a name="output_security_group_owner_id"></a> [security\_group\_owner\_id](#output\_security\_group\_owner\_id) | The owner ID |
| <a name="output_this_security_group_vpc_id"></a> [this\_security\_group\_vpc\_id](#output\_this\_security\_group\_vpc\_id) | The VPC ID | | <a name="output_security_group_vpc_id"></a> [security\_group\_vpc\_id](#output\_security\_group\_vpc\_id) | The VPC ID |
<!-- END OF PRE-COMMIT-TERRAFORM DOCS HOOK --> <!-- END OF PRE-COMMIT-TERRAFORM DOCS HOOK -->
output "this_security_group_id" { output "security_group_id" {
description = "The ID of the security group" description = "The ID of the security group"
value = module.sg.this_security_group_id value = module.sg.security_group_id
} }
output "this_security_group_vpc_id" { output "security_group_vpc_id" {
description = "The VPC ID" description = "The VPC ID"
value = module.sg.this_security_group_vpc_id value = module.sg.security_group_vpc_id
} }
output "this_security_group_owner_id" { output "security_group_owner_id" {
description = "The owner ID" description = "The owner ID"
value = module.sg.this_security_group_owner_id value = module.sg.security_group_owner_id
} }
output "this_security_group_name" { output "security_group_name" {
description = "The name of the security group" description = "The name of the security group"
value = module.sg.this_security_group_name value = module.sg.security_group_name
} }
output "this_security_group_description" { output "security_group_description" {
description = "The description of the security group" description = "The description of the security group"
value = module.sg.this_security_group_description value = module.sg.security_group_description
} }
...@@ -5,7 +5,7 @@ ...@@ -5,7 +5,7 @@
```hcl ```hcl
module "memcached_security_group" { module "memcached_security_group" {
source = "terraform-aws-modules/security-group/aws//modules/memcached" source = "terraform-aws-modules/security-group/aws//modules/memcached"
version = "~> 3.0" version = "~> 4.0"
# omitted... # omitted...
} }
...@@ -111,9 +111,9 @@ No resources. ...@@ -111,9 +111,9 @@ No resources.
| Name | Description | | Name | Description |
|------|-------------| |------|-------------|
| <a name="output_this_security_group_description"></a> [this\_security\_group\_description](#output\_this\_security\_group\_description) | The description of the security group | | <a name="output_security_group_description"></a> [security\_group\_description](#output\_security\_group\_description) | The description of the security group |
| <a name="output_this_security_group_id"></a> [this\_security\_group\_id](#output\_this\_security\_group\_id) | The ID of the security group | | <a name="output_security_group_id"></a> [security\_group\_id](#output\_security\_group\_id) | The ID of the security group |
| <a name="output_this_security_group_name"></a> [this\_security\_group\_name](#output\_this\_security\_group\_name) | The name of the security group | | <a name="output_security_group_name"></a> [security\_group\_name](#output\_security\_group\_name) | The name of the security group |
| <a name="output_this_security_group_owner_id"></a> [this\_security\_group\_owner\_id](#output\_this\_security\_group\_owner\_id) | The owner ID | | <a name="output_security_group_owner_id"></a> [security\_group\_owner\_id](#output\_security\_group\_owner\_id) | The owner ID |
| <a name="output_this_security_group_vpc_id"></a> [this\_security\_group\_vpc\_id](#output\_this\_security\_group\_vpc\_id) | The VPC ID | | <a name="output_security_group_vpc_id"></a> [security\_group\_vpc\_id](#output\_security\_group\_vpc\_id) | The VPC ID |
<!-- END OF PRE-COMMIT-TERRAFORM DOCS HOOK --> <!-- END OF PRE-COMMIT-TERRAFORM DOCS HOOK -->
output "this_security_group_id" { output "security_group_id" {
description = "The ID of the security group" description = "The ID of the security group"
value = module.sg.this_security_group_id value = module.sg.security_group_id
} }
output "this_security_group_vpc_id" { output "security_group_vpc_id" {
description = "The VPC ID" description = "The VPC ID"
value = module.sg.this_security_group_vpc_id value = module.sg.security_group_vpc_id
} }
output "this_security_group_owner_id" { output "security_group_owner_id" {
description = "The owner ID" description = "The owner ID"
value = module.sg.this_security_group_owner_id value = module.sg.security_group_owner_id
} }
output "this_security_group_name" { output "security_group_name" {
description = "The name of the security group" description = "The name of the security group"
value = module.sg.this_security_group_name value = module.sg.security_group_name
} }
output "this_security_group_description" { output "security_group_description" {
description = "The description of the security group" description = "The description of the security group"
value = module.sg.this_security_group_description value = module.sg.security_group_description
} }
...@@ -5,7 +5,7 @@ ...@@ -5,7 +5,7 @@
```hcl ```hcl
module "minio_security_group" { module "minio_security_group" {
source = "terraform-aws-modules/security-group/aws//modules/minio" source = "terraform-aws-modules/security-group/aws//modules/minio"
version = "~> 3.0" version = "~> 4.0"
# omitted... # omitted...
} }
...@@ -111,9 +111,9 @@ No resources. ...@@ -111,9 +111,9 @@ No resources.
| Name | Description | | Name | Description |
|------|-------------| |------|-------------|
| <a name="output_this_security_group_description"></a> [this\_security\_group\_description](#output\_this\_security\_group\_description) | The description of the security group | | <a name="output_security_group_description"></a> [security\_group\_description](#output\_security\_group\_description) | The description of the security group |
| <a name="output_this_security_group_id"></a> [this\_security\_group\_id](#output\_this\_security\_group\_id) | The ID of the security group | | <a name="output_security_group_id"></a> [security\_group\_id](#output\_security\_group\_id) | The ID of the security group |
| <a name="output_this_security_group_name"></a> [this\_security\_group\_name](#output\_this\_security\_group\_name) | The name of the security group | | <a name="output_security_group_name"></a> [security\_group\_name](#output\_security\_group\_name) | The name of the security group |
| <a name="output_this_security_group_owner_id"></a> [this\_security\_group\_owner\_id](#output\_this\_security\_group\_owner\_id) | The owner ID | | <a name="output_security_group_owner_id"></a> [security\_group\_owner\_id](#output\_security\_group\_owner\_id) | The owner ID |
| <a name="output_this_security_group_vpc_id"></a> [this\_security\_group\_vpc\_id](#output\_this\_security\_group\_vpc\_id) | The VPC ID | | <a name="output_security_group_vpc_id"></a> [security\_group\_vpc\_id](#output\_security\_group\_vpc\_id) | The VPC ID |
<!-- END OF PRE-COMMIT-TERRAFORM DOCS HOOK --> <!-- END OF PRE-COMMIT-TERRAFORM DOCS HOOK -->
output "this_security_group_id" { output "security_group_id" {
description = "The ID of the security group" description = "The ID of the security group"
value = module.sg.this_security_group_id value = module.sg.security_group_id
} }
output "this_security_group_vpc_id" { output "security_group_vpc_id" {
description = "The VPC ID" description = "The VPC ID"
value = module.sg.this_security_group_vpc_id value = module.sg.security_group_vpc_id
} }
output "this_security_group_owner_id" { output "security_group_owner_id" {
description = "The owner ID" description = "The owner ID"
value = module.sg.this_security_group_owner_id value = module.sg.security_group_owner_id
} }
output "this_security_group_name" { output "security_group_name" {
description = "The name of the security group" description = "The name of the security group"
value = module.sg.this_security_group_name value = module.sg.security_group_name
} }
output "this_security_group_description" { output "security_group_description" {
description = "The description of the security group" description = "The description of the security group"
value = module.sg.this_security_group_description value = module.sg.security_group_description
} }
...@@ -5,7 +5,7 @@ ...@@ -5,7 +5,7 @@
```hcl ```hcl
module "mongodb_security_group" { module "mongodb_security_group" {
source = "terraform-aws-modules/security-group/aws//modules/mongodb" source = "terraform-aws-modules/security-group/aws//modules/mongodb"
version = "~> 3.0" version = "~> 4.0"
# omitted... # omitted...
} }
...@@ -111,9 +111,9 @@ No resources. ...@@ -111,9 +111,9 @@ No resources.
| Name | Description | | Name | Description |
|------|-------------| |------|-------------|
| <a name="output_this_security_group_description"></a> [this\_security\_group\_description](#output\_this\_security\_group\_description) | The description of the security group | | <a name="output_security_group_description"></a> [security\_group\_description](#output\_security\_group\_description) | The description of the security group |
| <a name="output_this_security_group_id"></a> [this\_security\_group\_id](#output\_this\_security\_group\_id) | The ID of the security group | | <a name="output_security_group_id"></a> [security\_group\_id](#output\_security\_group\_id) | The ID of the security group |
| <a name="output_this_security_group_name"></a> [this\_security\_group\_name](#output\_this\_security\_group\_name) | The name of the security group | | <a name="output_security_group_name"></a> [security\_group\_name](#output\_security\_group\_name) | The name of the security group |
| <a name="output_this_security_group_owner_id"></a> [this\_security\_group\_owner\_id](#output\_this\_security\_group\_owner\_id) | The owner ID | | <a name="output_security_group_owner_id"></a> [security\_group\_owner\_id](#output\_security\_group\_owner\_id) | The owner ID |
| <a name="output_this_security_group_vpc_id"></a> [this\_security\_group\_vpc\_id](#output\_this\_security\_group\_vpc\_id) | The VPC ID | | <a name="output_security_group_vpc_id"></a> [security\_group\_vpc\_id](#output\_security\_group\_vpc\_id) | The VPC ID |
<!-- END OF PRE-COMMIT-TERRAFORM DOCS HOOK --> <!-- END OF PRE-COMMIT-TERRAFORM DOCS HOOK -->
output "this_security_group_id" { output "security_group_id" {
description = "The ID of the security group" description = "The ID of the security group"
value = module.sg.this_security_group_id value = module.sg.security_group_id
} }
output "this_security_group_vpc_id" { output "security_group_vpc_id" {
description = "The VPC ID" description = "The VPC ID"
value = module.sg.this_security_group_vpc_id value = module.sg.security_group_vpc_id
} }
output "this_security_group_owner_id" { output "security_group_owner_id" {
description = "The owner ID" description = "The owner ID"
value = module.sg.this_security_group_owner_id value = module.sg.security_group_owner_id
} }
output "this_security_group_name" { output "security_group_name" {
description = "The name of the security group" description = "The name of the security group"
value = module.sg.this_security_group_name value = module.sg.security_group_name
} }
output "this_security_group_description" { output "security_group_description" {
description = "The description of the security group" description = "The description of the security group"
value = module.sg.this_security_group_description value = module.sg.security_group_description
} }
...@@ -5,7 +5,7 @@ ...@@ -5,7 +5,7 @@
```hcl ```hcl
module "mssql_security_group" { module "mssql_security_group" {
source = "terraform-aws-modules/security-group/aws//modules/mssql" source = "terraform-aws-modules/security-group/aws//modules/mssql"
version = "~> 3.0" version = "~> 4.0"
# omitted... # omitted...
} }
...@@ -111,9 +111,9 @@ No resources. ...@@ -111,9 +111,9 @@ No resources.
| Name | Description | | Name | Description |
|------|-------------| |------|-------------|
| <a name="output_this_security_group_description"></a> [this\_security\_group\_description](#output\_this\_security\_group\_description) | The description of the security group | | <a name="output_security_group_description"></a> [security\_group\_description](#output\_security\_group\_description) | The description of the security group |
| <a name="output_this_security_group_id"></a> [this\_security\_group\_id](#output\_this\_security\_group\_id) | The ID of the security group | | <a name="output_security_group_id"></a> [security\_group\_id](#output\_security\_group\_id) | The ID of the security group |
| <a name="output_this_security_group_name"></a> [this\_security\_group\_name](#output\_this\_security\_group\_name) | The name of the security group | | <a name="output_security_group_name"></a> [security\_group\_name](#output\_security\_group\_name) | The name of the security group |
| <a name="output_this_security_group_owner_id"></a> [this\_security\_group\_owner\_id](#output\_this\_security\_group\_owner\_id) | The owner ID | | <a name="output_security_group_owner_id"></a> [security\_group\_owner\_id](#output\_security\_group\_owner\_id) | The owner ID |
| <a name="output_this_security_group_vpc_id"></a> [this\_security\_group\_vpc\_id](#output\_this\_security\_group\_vpc\_id) | The VPC ID | | <a name="output_security_group_vpc_id"></a> [security\_group\_vpc\_id](#output\_security\_group\_vpc\_id) | The VPC ID |
<!-- END OF PRE-COMMIT-TERRAFORM DOCS HOOK --> <!-- END OF PRE-COMMIT-TERRAFORM DOCS HOOK -->
output "this_security_group_id" { output "security_group_id" {
description = "The ID of the security group" description = "The ID of the security group"
value = module.sg.this_security_group_id value = module.sg.security_group_id
} }
output "this_security_group_vpc_id" { output "security_group_vpc_id" {
description = "The VPC ID" description = "The VPC ID"
value = module.sg.this_security_group_vpc_id value = module.sg.security_group_vpc_id
} }
output "this_security_group_owner_id" { output "security_group_owner_id" {
description = "The owner ID" description = "The owner ID"
value = module.sg.this_security_group_owner_id value = module.sg.security_group_owner_id
} }
output "this_security_group_name" { output "security_group_name" {
description = "The name of the security group" description = "The name of the security group"
value = module.sg.this_security_group_name value = module.sg.security_group_name
} }
output "this_security_group_description" { output "security_group_description" {
description = "The description of the security group" description = "The description of the security group"
value = module.sg.this_security_group_description value = module.sg.security_group_description
} }
...@@ -5,7 +5,7 @@ ...@@ -5,7 +5,7 @@
```hcl ```hcl
module "mysql_security_group" { module "mysql_security_group" {
source = "terraform-aws-modules/security-group/aws//modules/mysql" source = "terraform-aws-modules/security-group/aws//modules/mysql"
version = "~> 3.0" version = "~> 4.0"
# omitted... # omitted...
} }
...@@ -111,9 +111,9 @@ No resources. ...@@ -111,9 +111,9 @@ No resources.
| Name | Description | | Name | Description |
|------|-------------| |------|-------------|
| <a name="output_this_security_group_description"></a> [this\_security\_group\_description](#output\_this\_security\_group\_description) | The description of the security group | | <a name="output_security_group_description"></a> [security\_group\_description](#output\_security\_group\_description) | The description of the security group |
| <a name="output_this_security_group_id"></a> [this\_security\_group\_id](#output\_this\_security\_group\_id) | The ID of the security group | | <a name="output_security_group_id"></a> [security\_group\_id](#output\_security\_group\_id) | The ID of the security group |
| <a name="output_this_security_group_name"></a> [this\_security\_group\_name](#output\_this\_security\_group\_name) | The name of the security group | | <a name="output_security_group_name"></a> [security\_group\_name](#output\_security\_group\_name) | The name of the security group |
| <a name="output_this_security_group_owner_id"></a> [this\_security\_group\_owner\_id](#output\_this\_security\_group\_owner\_id) | The owner ID | | <a name="output_security_group_owner_id"></a> [security\_group\_owner\_id](#output\_security\_group\_owner\_id) | The owner ID |
| <a name="output_this_security_group_vpc_id"></a> [this\_security\_group\_vpc\_id](#output\_this\_security\_group\_vpc\_id) | The VPC ID | | <a name="output_security_group_vpc_id"></a> [security\_group\_vpc\_id](#output\_security\_group\_vpc\_id) | The VPC ID |
<!-- END OF PRE-COMMIT-TERRAFORM DOCS HOOK --> <!-- END OF PRE-COMMIT-TERRAFORM DOCS HOOK -->
output "this_security_group_id" { output "security_group_id" {
description = "The ID of the security group" description = "The ID of the security group"
value = module.sg.this_security_group_id value = module.sg.security_group_id
} }
output "this_security_group_vpc_id" { output "security_group_vpc_id" {
description = "The VPC ID" description = "The VPC ID"
value = module.sg.this_security_group_vpc_id value = module.sg.security_group_vpc_id
} }
output "this_security_group_owner_id" { output "security_group_owner_id" {
description = "The owner ID" description = "The owner ID"
value = module.sg.this_security_group_owner_id value = module.sg.security_group_owner_id
} }
output "this_security_group_name" { output "security_group_name" {
description = "The name of the security group" description = "The name of the security group"
value = module.sg.this_security_group_name value = module.sg.security_group_name
} }
output "this_security_group_description" { output "security_group_description" {
description = "The description of the security group" description = "The description of the security group"
value = module.sg.this_security_group_description value = module.sg.security_group_description
} }
...@@ -5,7 +5,7 @@ ...@@ -5,7 +5,7 @@
```hcl ```hcl
module "nfs_security_group" { module "nfs_security_group" {
source = "terraform-aws-modules/security-group/aws//modules/nfs" source = "terraform-aws-modules/security-group/aws//modules/nfs"
version = "~> 3.0" version = "~> 4.0"
# omitted... # omitted...
} }
...@@ -111,9 +111,9 @@ No resources. ...@@ -111,9 +111,9 @@ No resources.
| Name | Description | | Name | Description |
|------|-------------| |------|-------------|
| <a name="output_this_security_group_description"></a> [this\_security\_group\_description](#output\_this\_security\_group\_description) | The description of the security group | | <a name="output_security_group_description"></a> [security\_group\_description](#output\_security\_group\_description) | The description of the security group |
| <a name="output_this_security_group_id"></a> [this\_security\_group\_id](#output\_this\_security\_group\_id) | The ID of the security group | | <a name="output_security_group_id"></a> [security\_group\_id](#output\_security\_group\_id) | The ID of the security group |
| <a name="output_this_security_group_name"></a> [this\_security\_group\_name](#output\_this\_security\_group\_name) | The name of the security group | | <a name="output_security_group_name"></a> [security\_group\_name](#output\_security\_group\_name) | The name of the security group |
| <a name="output_this_security_group_owner_id"></a> [this\_security\_group\_owner\_id](#output\_this\_security\_group\_owner\_id) | The owner ID | | <a name="output_security_group_owner_id"></a> [security\_group\_owner\_id](#output\_security\_group\_owner\_id) | The owner ID |
| <a name="output_this_security_group_vpc_id"></a> [this\_security\_group\_vpc\_id](#output\_this\_security\_group\_vpc\_id) | The VPC ID | | <a name="output_security_group_vpc_id"></a> [security\_group\_vpc\_id](#output\_security\_group\_vpc\_id) | The VPC ID |
<!-- END OF PRE-COMMIT-TERRAFORM DOCS HOOK --> <!-- END OF PRE-COMMIT-TERRAFORM DOCS HOOK -->
output "this_security_group_id" { output "security_group_id" {
description = "The ID of the security group" description = "The ID of the security group"
value = module.sg.this_security_group_id value = module.sg.security_group_id
} }
output "this_security_group_vpc_id" { output "security_group_vpc_id" {
description = "The VPC ID" description = "The VPC ID"
value = module.sg.this_security_group_vpc_id value = module.sg.security_group_vpc_id
} }
output "this_security_group_owner_id" { output "security_group_owner_id" {
description = "The owner ID" description = "The owner ID"
value = module.sg.this_security_group_owner_id value = module.sg.security_group_owner_id
} }
output "this_security_group_name" { output "security_group_name" {
description = "The name of the security group" description = "The name of the security group"
value = module.sg.this_security_group_name value = module.sg.security_group_name
} }
output "this_security_group_description" { output "security_group_description" {
description = "The description of the security group" description = "The description of the security group"
value = module.sg.this_security_group_description value = module.sg.security_group_description
} }
...@@ -5,7 +5,7 @@ ...@@ -5,7 +5,7 @@
```hcl ```hcl
module "nomad_security_group" { module "nomad_security_group" {
source = "terraform-aws-modules/security-group/aws//modules/nomad" source = "terraform-aws-modules/security-group/aws//modules/nomad"
version = "~> 3.0" version = "~> 4.0"
# omitted... # omitted...
} }
...@@ -111,9 +111,9 @@ No resources. ...@@ -111,9 +111,9 @@ No resources.
| Name | Description | | Name | Description |
|------|-------------| |------|-------------|
| <a name="output_this_security_group_description"></a> [this\_security\_group\_description](#output\_this\_security\_group\_description) | The description of the security group | | <a name="output_security_group_description"></a> [security\_group\_description](#output\_security\_group\_description) | The description of the security group |
| <a name="output_this_security_group_id"></a> [this\_security\_group\_id](#output\_this\_security\_group\_id) | The ID of the security group | | <a name="output_security_group_id"></a> [security\_group\_id](#output\_security\_group\_id) | The ID of the security group |
| <a name="output_this_security_group_name"></a> [this\_security\_group\_name](#output\_this\_security\_group\_name) | The name of the security group | | <a name="output_security_group_name"></a> [security\_group\_name](#output\_security\_group\_name) | The name of the security group |
| <a name="output_this_security_group_owner_id"></a> [this\_security\_group\_owner\_id](#output\_this\_security\_group\_owner\_id) | The owner ID | | <a name="output_security_group_owner_id"></a> [security\_group\_owner\_id](#output\_security\_group\_owner\_id) | The owner ID |
| <a name="output_this_security_group_vpc_id"></a> [this\_security\_group\_vpc\_id](#output\_this\_security\_group\_vpc\_id) | The VPC ID | | <a name="output_security_group_vpc_id"></a> [security\_group\_vpc\_id](#output\_security\_group\_vpc\_id) | The VPC ID |
<!-- END OF PRE-COMMIT-TERRAFORM DOCS HOOK --> <!-- END OF PRE-COMMIT-TERRAFORM DOCS HOOK -->
output "this_security_group_id" { output "security_group_id" {
description = "The ID of the security group" description = "The ID of the security group"
value = module.sg.this_security_group_id value = module.sg.security_group_id
} }
output "this_security_group_vpc_id" { output "security_group_vpc_id" {
description = "The VPC ID" description = "The VPC ID"
value = module.sg.this_security_group_vpc_id value = module.sg.security_group_vpc_id
} }
output "this_security_group_owner_id" { output "security_group_owner_id" {
description = "The owner ID" description = "The owner ID"
value = module.sg.this_security_group_owner_id value = module.sg.security_group_owner_id
} }
output "this_security_group_name" { output "security_group_name" {
description = "The name of the security group" description = "The name of the security group"
value = module.sg.this_security_group_name value = module.sg.security_group_name
} }
output "this_security_group_description" { output "security_group_description" {
description = "The description of the security group" description = "The description of the security group"
value = module.sg.this_security_group_description value = module.sg.security_group_description
} }
...@@ -5,7 +5,7 @@ ...@@ -5,7 +5,7 @@
```hcl ```hcl
module "ntp_security_group" { module "ntp_security_group" {
source = "terraform-aws-modules/security-group/aws//modules/ntp" source = "terraform-aws-modules/security-group/aws//modules/ntp"
version = "~> 3.0" version = "~> 4.0"
# omitted... # omitted...
} }
...@@ -111,9 +111,9 @@ No resources. ...@@ -111,9 +111,9 @@ No resources.
| Name | Description | | Name | Description |
|------|-------------| |------|-------------|
| <a name="output_this_security_group_description"></a> [this\_security\_group\_description](#output\_this\_security\_group\_description) | The description of the security group | | <a name="output_security_group_description"></a> [security\_group\_description](#output\_security\_group\_description) | The description of the security group |
| <a name="output_this_security_group_id"></a> [this\_security\_group\_id](#output\_this\_security\_group\_id) | The ID of the security group | | <a name="output_security_group_id"></a> [security\_group\_id](#output\_security\_group\_id) | The ID of the security group |
| <a name="output_this_security_group_name"></a> [this\_security\_group\_name](#output\_this\_security\_group\_name) | The name of the security group | | <a name="output_security_group_name"></a> [security\_group\_name](#output\_security\_group\_name) | The name of the security group |
| <a name="output_this_security_group_owner_id"></a> [this\_security\_group\_owner\_id](#output\_this\_security\_group\_owner\_id) | The owner ID | | <a name="output_security_group_owner_id"></a> [security\_group\_owner\_id](#output\_security\_group\_owner\_id) | The owner ID |
| <a name="output_this_security_group_vpc_id"></a> [this\_security\_group\_vpc\_id](#output\_this\_security\_group\_vpc\_id) | The VPC ID | | <a name="output_security_group_vpc_id"></a> [security\_group\_vpc\_id](#output\_security\_group\_vpc\_id) | The VPC ID |
<!-- END OF PRE-COMMIT-TERRAFORM DOCS HOOK --> <!-- END OF PRE-COMMIT-TERRAFORM DOCS HOOK -->
output "this_security_group_id" { output "security_group_id" {
description = "The ID of the security group" description = "The ID of the security group"
value = module.sg.this_security_group_id value = module.sg.security_group_id
} }
output "this_security_group_vpc_id" { output "security_group_vpc_id" {
description = "The VPC ID" description = "The VPC ID"
value = module.sg.this_security_group_vpc_id value = module.sg.security_group_vpc_id
} }
output "this_security_group_owner_id" { output "security_group_owner_id" {
description = "The owner ID" description = "The owner ID"
value = module.sg.this_security_group_owner_id value = module.sg.security_group_owner_id
} }
output "this_security_group_name" { output "security_group_name" {
description = "The name of the security group" description = "The name of the security group"
value = module.sg.this_security_group_name value = module.sg.security_group_name
} }
output "this_security_group_description" { output "security_group_description" {
description = "The description of the security group" description = "The description of the security group"
value = module.sg.this_security_group_description value = module.sg.security_group_description
} }
...@@ -5,7 +5,7 @@ ...@@ -5,7 +5,7 @@
```hcl ```hcl
module "openvpn_security_group" { module "openvpn_security_group" {
source = "terraform-aws-modules/security-group/aws//modules/openvpn" source = "terraform-aws-modules/security-group/aws//modules/openvpn"
version = "~> 3.0" version = "~> 4.0"
# omitted... # omitted...
} }
...@@ -111,9 +111,9 @@ No resources. ...@@ -111,9 +111,9 @@ No resources.
| Name | Description | | Name | Description |
|------|-------------| |------|-------------|
| <a name="output_this_security_group_description"></a> [this\_security\_group\_description](#output\_this\_security\_group\_description) | The description of the security group | | <a name="output_security_group_description"></a> [security\_group\_description](#output\_security\_group\_description) | The description of the security group |
| <a name="output_this_security_group_id"></a> [this\_security\_group\_id](#output\_this\_security\_group\_id) | The ID of the security group | | <a name="output_security_group_id"></a> [security\_group\_id](#output\_security\_group\_id) | The ID of the security group |
| <a name="output_this_security_group_name"></a> [this\_security\_group\_name](#output\_this\_security\_group\_name) | The name of the security group | | <a name="output_security_group_name"></a> [security\_group\_name](#output\_security\_group\_name) | The name of the security group |
| <a name="output_this_security_group_owner_id"></a> [this\_security\_group\_owner\_id](#output\_this\_security\_group\_owner\_id) | The owner ID | | <a name="output_security_group_owner_id"></a> [security\_group\_owner\_id](#output\_security\_group\_owner\_id) | The owner ID |
| <a name="output_this_security_group_vpc_id"></a> [this\_security\_group\_vpc\_id](#output\_this\_security\_group\_vpc\_id) | The VPC ID | | <a name="output_security_group_vpc_id"></a> [security\_group\_vpc\_id](#output\_security\_group\_vpc\_id) | The VPC ID |
<!-- END OF PRE-COMMIT-TERRAFORM DOCS HOOK --> <!-- END OF PRE-COMMIT-TERRAFORM DOCS HOOK -->
output "this_security_group_id" { output "security_group_id" {
description = "The ID of the security group" description = "The ID of the security group"
value = module.sg.this_security_group_id value = module.sg.security_group_id
} }
output "this_security_group_vpc_id" { output "security_group_vpc_id" {
description = "The VPC ID" description = "The VPC ID"
value = module.sg.this_security_group_vpc_id value = module.sg.security_group_vpc_id
} }
output "this_security_group_owner_id" { output "security_group_owner_id" {
description = "The owner ID" description = "The owner ID"
value = module.sg.this_security_group_owner_id value = module.sg.security_group_owner_id
} }
output "this_security_group_name" { output "security_group_name" {
description = "The name of the security group" description = "The name of the security group"
value = module.sg.this_security_group_name value = module.sg.security_group_name
} }
output "this_security_group_description" { output "security_group_description" {
description = "The description of the security group" description = "The description of the security group"
value = module.sg.this_security_group_description value = module.sg.security_group_description
} }
...@@ -5,7 +5,7 @@ ...@@ -5,7 +5,7 @@
```hcl ```hcl
module "oracle_db_security_group" { module "oracle_db_security_group" {
source = "terraform-aws-modules/security-group/aws//modules/oracle-db" source = "terraform-aws-modules/security-group/aws//modules/oracle-db"
version = "~> 3.0" version = "~> 4.0"
# omitted... # omitted...
} }
...@@ -111,9 +111,9 @@ No resources. ...@@ -111,9 +111,9 @@ No resources.
| Name | Description | | Name | Description |
|------|-------------| |------|-------------|
| <a name="output_this_security_group_description"></a> [this\_security\_group\_description](#output\_this\_security\_group\_description) | The description of the security group | | <a name="output_security_group_description"></a> [security\_group\_description](#output\_security\_group\_description) | The description of the security group |
| <a name="output_this_security_group_id"></a> [this\_security\_group\_id](#output\_this\_security\_group\_id) | The ID of the security group | | <a name="output_security_group_id"></a> [security\_group\_id](#output\_security\_group\_id) | The ID of the security group |
| <a name="output_this_security_group_name"></a> [this\_security\_group\_name](#output\_this\_security\_group\_name) | The name of the security group | | <a name="output_security_group_name"></a> [security\_group\_name](#output\_security\_group\_name) | The name of the security group |
| <a name="output_this_security_group_owner_id"></a> [this\_security\_group\_owner\_id](#output\_this\_security\_group\_owner\_id) | The owner ID | | <a name="output_security_group_owner_id"></a> [security\_group\_owner\_id](#output\_security\_group\_owner\_id) | The owner ID |
| <a name="output_this_security_group_vpc_id"></a> [this\_security\_group\_vpc\_id](#output\_this\_security\_group\_vpc\_id) | The VPC ID | | <a name="output_security_group_vpc_id"></a> [security\_group\_vpc\_id](#output\_security\_group\_vpc\_id) | The VPC ID |
<!-- END OF PRE-COMMIT-TERRAFORM DOCS HOOK --> <!-- END OF PRE-COMMIT-TERRAFORM DOCS HOOK -->
output "this_security_group_id" { output "security_group_id" {
description = "The ID of the security group" description = "The ID of the security group"
value = module.sg.this_security_group_id value = module.sg.security_group_id
} }
output "this_security_group_vpc_id" { output "security_group_vpc_id" {
description = "The VPC ID" description = "The VPC ID"
value = module.sg.this_security_group_vpc_id value = module.sg.security_group_vpc_id
} }
output "this_security_group_owner_id" { output "security_group_owner_id" {
description = "The owner ID" description = "The owner ID"
value = module.sg.this_security_group_owner_id value = module.sg.security_group_owner_id
} }
output "this_security_group_name" { output "security_group_name" {
description = "The name of the security group" description = "The name of the security group"
value = module.sg.this_security_group_name value = module.sg.security_group_name
} }
output "this_security_group_description" { output "security_group_description" {
description = "The description of the security group" description = "The description of the security group"
value = module.sg.this_security_group_description value = module.sg.security_group_description
} }
...@@ -5,7 +5,7 @@ ...@@ -5,7 +5,7 @@
```hcl ```hcl
module "postgresql_security_group" { module "postgresql_security_group" {
source = "terraform-aws-modules/security-group/aws//modules/postgresql" source = "terraform-aws-modules/security-group/aws//modules/postgresql"
version = "~> 3.0" version = "~> 4.0"
# omitted... # omitted...
} }
...@@ -111,9 +111,9 @@ No resources. ...@@ -111,9 +111,9 @@ No resources.
| Name | Description | | Name | Description |
|------|-------------| |------|-------------|
| <a name="output_this_security_group_description"></a> [this\_security\_group\_description](#output\_this\_security\_group\_description) | The description of the security group | | <a name="output_security_group_description"></a> [security\_group\_description](#output\_security\_group\_description) | The description of the security group |
| <a name="output_this_security_group_id"></a> [this\_security\_group\_id](#output\_this\_security\_group\_id) | The ID of the security group | | <a name="output_security_group_id"></a> [security\_group\_id](#output\_security\_group\_id) | The ID of the security group |
| <a name="output_this_security_group_name"></a> [this\_security\_group\_name](#output\_this\_security\_group\_name) | The name of the security group | | <a name="output_security_group_name"></a> [security\_group\_name](#output\_security\_group\_name) | The name of the security group |
| <a name="output_this_security_group_owner_id"></a> [this\_security\_group\_owner\_id](#output\_this\_security\_group\_owner\_id) | The owner ID | | <a name="output_security_group_owner_id"></a> [security\_group\_owner\_id](#output\_security\_group\_owner\_id) | The owner ID |
| <a name="output_this_security_group_vpc_id"></a> [this\_security\_group\_vpc\_id](#output\_this\_security\_group\_vpc\_id) | The VPC ID | | <a name="output_security_group_vpc_id"></a> [security\_group\_vpc\_id](#output\_security\_group\_vpc\_id) | The VPC ID |
<!-- END OF PRE-COMMIT-TERRAFORM DOCS HOOK --> <!-- END OF PRE-COMMIT-TERRAFORM DOCS HOOK -->
output "this_security_group_id" { output "security_group_id" {
description = "The ID of the security group" description = "The ID of the security group"
value = module.sg.this_security_group_id value = module.sg.security_group_id
} }
output "this_security_group_vpc_id" { output "security_group_vpc_id" {
description = "The VPC ID" description = "The VPC ID"
value = module.sg.this_security_group_vpc_id value = module.sg.security_group_vpc_id
} }
output "this_security_group_owner_id" { output "security_group_owner_id" {
description = "The owner ID" description = "The owner ID"
value = module.sg.this_security_group_owner_id value = module.sg.security_group_owner_id
} }
output "this_security_group_name" { output "security_group_name" {
description = "The name of the security group" description = "The name of the security group"
value = module.sg.this_security_group_name value = module.sg.security_group_name
} }
output "this_security_group_description" { output "security_group_description" {
description = "The description of the security group" description = "The description of the security group"
value = module.sg.this_security_group_description value = module.sg.security_group_description
} }
...@@ -5,7 +5,7 @@ ...@@ -5,7 +5,7 @@
```hcl ```hcl
module "prometheus_security_group" { module "prometheus_security_group" {
source = "terraform-aws-modules/security-group/aws//modules/prometheus" source = "terraform-aws-modules/security-group/aws//modules/prometheus"
version = "~> 3.0" version = "~> 4.0"
# omitted... # omitted...
} }
...@@ -111,9 +111,9 @@ No resources. ...@@ -111,9 +111,9 @@ No resources.
| Name | Description | | Name | Description |
|------|-------------| |------|-------------|
| <a name="output_this_security_group_description"></a> [this\_security\_group\_description](#output\_this\_security\_group\_description) | The description of the security group | | <a name="output_security_group_description"></a> [security\_group\_description](#output\_security\_group\_description) | The description of the security group |
| <a name="output_this_security_group_id"></a> [this\_security\_group\_id](#output\_this\_security\_group\_id) | The ID of the security group | | <a name="output_security_group_id"></a> [security\_group\_id](#output\_security\_group\_id) | The ID of the security group |
| <a name="output_this_security_group_name"></a> [this\_security\_group\_name](#output\_this\_security\_group\_name) | The name of the security group | | <a name="output_security_group_name"></a> [security\_group\_name](#output\_security\_group\_name) | The name of the security group |
| <a name="output_this_security_group_owner_id"></a> [this\_security\_group\_owner\_id](#output\_this\_security\_group\_owner\_id) | The owner ID | | <a name="output_security_group_owner_id"></a> [security\_group\_owner\_id](#output\_security\_group\_owner\_id) | The owner ID |
| <a name="output_this_security_group_vpc_id"></a> [this\_security\_group\_vpc\_id](#output\_this\_security\_group\_vpc\_id) | The VPC ID | | <a name="output_security_group_vpc_id"></a> [security\_group\_vpc\_id](#output\_security\_group\_vpc\_id) | The VPC ID |
<!-- END OF PRE-COMMIT-TERRAFORM DOCS HOOK --> <!-- END OF PRE-COMMIT-TERRAFORM DOCS HOOK -->
output "this_security_group_id" { output "security_group_id" {
description = "The ID of the security group" description = "The ID of the security group"
value = module.sg.this_security_group_id value = module.sg.security_group_id
} }
output "this_security_group_vpc_id" { output "security_group_vpc_id" {
description = "The VPC ID" description = "The VPC ID"
value = module.sg.this_security_group_vpc_id value = module.sg.security_group_vpc_id
} }
output "this_security_group_owner_id" { output "security_group_owner_id" {
description = "The owner ID" description = "The owner ID"
value = module.sg.this_security_group_owner_id value = module.sg.security_group_owner_id
} }
output "this_security_group_name" { output "security_group_name" {
description = "The name of the security group" description = "The name of the security group"
value = module.sg.this_security_group_name value = module.sg.security_group_name
} }
output "this_security_group_description" { output "security_group_description" {
description = "The description of the security group" description = "The description of the security group"
value = module.sg.this_security_group_description value = module.sg.security_group_description
} }
...@@ -5,7 +5,7 @@ ...@@ -5,7 +5,7 @@
```hcl ```hcl
module "puppet_security_group" { module "puppet_security_group" {
source = "terraform-aws-modules/security-group/aws//modules/puppet" source = "terraform-aws-modules/security-group/aws//modules/puppet"
version = "~> 3.0" version = "~> 4.0"
# omitted... # omitted...
} }
...@@ -111,9 +111,9 @@ No resources. ...@@ -111,9 +111,9 @@ No resources.
| Name | Description | | Name | Description |
|------|-------------| |------|-------------|
| <a name="output_this_security_group_description"></a> [this\_security\_group\_description](#output\_this\_security\_group\_description) | The description of the security group | | <a name="output_security_group_description"></a> [security\_group\_description](#output\_security\_group\_description) | The description of the security group |
| <a name="output_this_security_group_id"></a> [this\_security\_group\_id](#output\_this\_security\_group\_id) | The ID of the security group | | <a name="output_security_group_id"></a> [security\_group\_id](#output\_security\_group\_id) | The ID of the security group |
| <a name="output_this_security_group_name"></a> [this\_security\_group\_name](#output\_this\_security\_group\_name) | The name of the security group | | <a name="output_security_group_name"></a> [security\_group\_name](#output\_security\_group\_name) | The name of the security group |
| <a name="output_this_security_group_owner_id"></a> [this\_security\_group\_owner\_id](#output\_this\_security\_group\_owner\_id) | The owner ID | | <a name="output_security_group_owner_id"></a> [security\_group\_owner\_id](#output\_security\_group\_owner\_id) | The owner ID |
| <a name="output_this_security_group_vpc_id"></a> [this\_security\_group\_vpc\_id](#output\_this\_security\_group\_vpc\_id) | The VPC ID | | <a name="output_security_group_vpc_id"></a> [security\_group\_vpc\_id](#output\_security\_group\_vpc\_id) | The VPC ID |
<!-- END OF PRE-COMMIT-TERRAFORM DOCS HOOK --> <!-- END OF PRE-COMMIT-TERRAFORM DOCS HOOK -->
output "this_security_group_id" { output "security_group_id" {
description = "The ID of the security group" description = "The ID of the security group"
value = module.sg.this_security_group_id value = module.sg.security_group_id
} }
output "this_security_group_vpc_id" { output "security_group_vpc_id" {
description = "The VPC ID" description = "The VPC ID"
value = module.sg.this_security_group_vpc_id value = module.sg.security_group_vpc_id
} }
output "this_security_group_owner_id" { output "security_group_owner_id" {
description = "The owner ID" description = "The owner ID"
value = module.sg.this_security_group_owner_id value = module.sg.security_group_owner_id
} }
output "this_security_group_name" { output "security_group_name" {
description = "The name of the security group" description = "The name of the security group"
value = module.sg.this_security_group_name value = module.sg.security_group_name
} }
output "this_security_group_description" { output "security_group_description" {
description = "The description of the security group" description = "The description of the security group"
value = module.sg.this_security_group_description value = module.sg.security_group_description
} }
...@@ -5,7 +5,7 @@ ...@@ -5,7 +5,7 @@
```hcl ```hcl
module "rabbitmq_security_group" { module "rabbitmq_security_group" {
source = "terraform-aws-modules/security-group/aws//modules/rabbitmq" source = "terraform-aws-modules/security-group/aws//modules/rabbitmq"
version = "~> 3.0" version = "~> 4.0"
# omitted... # omitted...
} }
...@@ -111,9 +111,9 @@ No resources. ...@@ -111,9 +111,9 @@ No resources.
| Name | Description | | Name | Description |
|------|-------------| |------|-------------|
| <a name="output_this_security_group_description"></a> [this\_security\_group\_description](#output\_this\_security\_group\_description) | The description of the security group | | <a name="output_security_group_description"></a> [security\_group\_description](#output\_security\_group\_description) | The description of the security group |
| <a name="output_this_security_group_id"></a> [this\_security\_group\_id](#output\_this\_security\_group\_id) | The ID of the security group | | <a name="output_security_group_id"></a> [security\_group\_id](#output\_security\_group\_id) | The ID of the security group |
| <a name="output_this_security_group_name"></a> [this\_security\_group\_name](#output\_this\_security\_group\_name) | The name of the security group | | <a name="output_security_group_name"></a> [security\_group\_name](#output\_security\_group\_name) | The name of the security group |
| <a name="output_this_security_group_owner_id"></a> [this\_security\_group\_owner\_id](#output\_this\_security\_group\_owner\_id) | The owner ID | | <a name="output_security_group_owner_id"></a> [security\_group\_owner\_id](#output\_security\_group\_owner\_id) | The owner ID |
| <a name="output_this_security_group_vpc_id"></a> [this\_security\_group\_vpc\_id](#output\_this\_security\_group\_vpc\_id) | The VPC ID | | <a name="output_security_group_vpc_id"></a> [security\_group\_vpc\_id](#output\_security\_group\_vpc\_id) | The VPC ID |
<!-- END OF PRE-COMMIT-TERRAFORM DOCS HOOK --> <!-- END OF PRE-COMMIT-TERRAFORM DOCS HOOK -->
output "this_security_group_id" { output "security_group_id" {
description = "The ID of the security group" description = "The ID of the security group"
value = module.sg.this_security_group_id value = module.sg.security_group_id
} }
output "this_security_group_vpc_id" { output "security_group_vpc_id" {
description = "The VPC ID" description = "The VPC ID"
value = module.sg.this_security_group_vpc_id value = module.sg.security_group_vpc_id
} }
output "this_security_group_owner_id" { output "security_group_owner_id" {
description = "The owner ID" description = "The owner ID"
value = module.sg.this_security_group_owner_id value = module.sg.security_group_owner_id
} }
output "this_security_group_name" { output "security_group_name" {
description = "The name of the security group" description = "The name of the security group"
value = module.sg.this_security_group_name value = module.sg.security_group_name
} }
output "this_security_group_description" { output "security_group_description" {
description = "The description of the security group" description = "The description of the security group"
value = module.sg.this_security_group_description value = module.sg.security_group_description
} }
...@@ -5,7 +5,7 @@ ...@@ -5,7 +5,7 @@
```hcl ```hcl
module "rdp_security_group" { module "rdp_security_group" {
source = "terraform-aws-modules/security-group/aws//modules/rdp" source = "terraform-aws-modules/security-group/aws//modules/rdp"
version = "~> 3.0" version = "~> 4.0"
# omitted... # omitted...
} }
...@@ -111,9 +111,9 @@ No resources. ...@@ -111,9 +111,9 @@ No resources.
| Name | Description | | Name | Description |
|------|-------------| |------|-------------|
| <a name="output_this_security_group_description"></a> [this\_security\_group\_description](#output\_this\_security\_group\_description) | The description of the security group | | <a name="output_security_group_description"></a> [security\_group\_description](#output\_security\_group\_description) | The description of the security group |
| <a name="output_this_security_group_id"></a> [this\_security\_group\_id](#output\_this\_security\_group\_id) | The ID of the security group | | <a name="output_security_group_id"></a> [security\_group\_id](#output\_security\_group\_id) | The ID of the security group |
| <a name="output_this_security_group_name"></a> [this\_security\_group\_name](#output\_this\_security\_group\_name) | The name of the security group | | <a name="output_security_group_name"></a> [security\_group\_name](#output\_security\_group\_name) | The name of the security group |
| <a name="output_this_security_group_owner_id"></a> [this\_security\_group\_owner\_id](#output\_this\_security\_group\_owner\_id) | The owner ID | | <a name="output_security_group_owner_id"></a> [security\_group\_owner\_id](#output\_security\_group\_owner\_id) | The owner ID |
| <a name="output_this_security_group_vpc_id"></a> [this\_security\_group\_vpc\_id](#output\_this\_security\_group\_vpc\_id) | The VPC ID | | <a name="output_security_group_vpc_id"></a> [security\_group\_vpc\_id](#output\_security\_group\_vpc\_id) | The VPC ID |
<!-- END OF PRE-COMMIT-TERRAFORM DOCS HOOK --> <!-- END OF PRE-COMMIT-TERRAFORM DOCS HOOK -->
output "this_security_group_id" { output "security_group_id" {
description = "The ID of the security group" description = "The ID of the security group"
value = module.sg.this_security_group_id value = module.sg.security_group_id
} }
output "this_security_group_vpc_id" { output "security_group_vpc_id" {
description = "The VPC ID" description = "The VPC ID"
value = module.sg.this_security_group_vpc_id value = module.sg.security_group_vpc_id
} }
output "this_security_group_owner_id" { output "security_group_owner_id" {
description = "The owner ID" description = "The owner ID"
value = module.sg.this_security_group_owner_id value = module.sg.security_group_owner_id
} }
output "this_security_group_name" { output "security_group_name" {
description = "The name of the security group" description = "The name of the security group"
value = module.sg.this_security_group_name value = module.sg.security_group_name
} }
output "this_security_group_description" { output "security_group_description" {
description = "The description of the security group" description = "The description of the security group"
value = module.sg.this_security_group_description value = module.sg.security_group_description
} }
...@@ -5,7 +5,7 @@ ...@@ -5,7 +5,7 @@
```hcl ```hcl
module "redis_security_group" { module "redis_security_group" {
source = "terraform-aws-modules/security-group/aws//modules/redis" source = "terraform-aws-modules/security-group/aws//modules/redis"
version = "~> 3.0" version = "~> 4.0"
# omitted... # omitted...
} }
...@@ -111,9 +111,9 @@ No resources. ...@@ -111,9 +111,9 @@ No resources.
| Name | Description | | Name | Description |
|------|-------------| |------|-------------|
| <a name="output_this_security_group_description"></a> [this\_security\_group\_description](#output\_this\_security\_group\_description) | The description of the security group | | <a name="output_security_group_description"></a> [security\_group\_description](#output\_security\_group\_description) | The description of the security group |
| <a name="output_this_security_group_id"></a> [this\_security\_group\_id](#output\_this\_security\_group\_id) | The ID of the security group | | <a name="output_security_group_id"></a> [security\_group\_id](#output\_security\_group\_id) | The ID of the security group |
| <a name="output_this_security_group_name"></a> [this\_security\_group\_name](#output\_this\_security\_group\_name) | The name of the security group | | <a name="output_security_group_name"></a> [security\_group\_name](#output\_security\_group\_name) | The name of the security group |
| <a name="output_this_security_group_owner_id"></a> [this\_security\_group\_owner\_id](#output\_this\_security\_group\_owner\_id) | The owner ID | | <a name="output_security_group_owner_id"></a> [security\_group\_owner\_id](#output\_security\_group\_owner\_id) | The owner ID |
| <a name="output_this_security_group_vpc_id"></a> [this\_security\_group\_vpc\_id](#output\_this\_security\_group\_vpc\_id) | The VPC ID | | <a name="output_security_group_vpc_id"></a> [security\_group\_vpc\_id](#output\_security\_group\_vpc\_id) | The VPC ID |
<!-- END OF PRE-COMMIT-TERRAFORM DOCS HOOK --> <!-- END OF PRE-COMMIT-TERRAFORM DOCS HOOK -->
output "this_security_group_id" { output "security_group_id" {
description = "The ID of the security group" description = "The ID of the security group"
value = module.sg.this_security_group_id value = module.sg.security_group_id
} }
output "this_security_group_vpc_id" { output "security_group_vpc_id" {
description = "The VPC ID" description = "The VPC ID"
value = module.sg.this_security_group_vpc_id value = module.sg.security_group_vpc_id
} }
output "this_security_group_owner_id" { output "security_group_owner_id" {
description = "The owner ID" description = "The owner ID"
value = module.sg.this_security_group_owner_id value = module.sg.security_group_owner_id
} }
output "this_security_group_name" { output "security_group_name" {
description = "The name of the security group" description = "The name of the security group"
value = module.sg.this_security_group_name value = module.sg.security_group_name
} }
output "this_security_group_description" { output "security_group_description" {
description = "The description of the security group" description = "The description of the security group"
value = module.sg.this_security_group_description value = module.sg.security_group_description
} }
...@@ -5,7 +5,7 @@ ...@@ -5,7 +5,7 @@
```hcl ```hcl
module "redshift_security_group" { module "redshift_security_group" {
source = "terraform-aws-modules/security-group/aws//modules/redshift" source = "terraform-aws-modules/security-group/aws//modules/redshift"
version = "~> 3.0" version = "~> 4.0"
# omitted... # omitted...
} }
...@@ -111,9 +111,9 @@ No resources. ...@@ -111,9 +111,9 @@ No resources.
| Name | Description | | Name | Description |
|------|-------------| |------|-------------|
| <a name="output_this_security_group_description"></a> [this\_security\_group\_description](#output\_this\_security\_group\_description) | The description of the security group | | <a name="output_security_group_description"></a> [security\_group\_description](#output\_security\_group\_description) | The description of the security group |
| <a name="output_this_security_group_id"></a> [this\_security\_group\_id](#output\_this\_security\_group\_id) | The ID of the security group | | <a name="output_security_group_id"></a> [security\_group\_id](#output\_security\_group\_id) | The ID of the security group |
| <a name="output_this_security_group_name"></a> [this\_security\_group\_name](#output\_this\_security\_group\_name) | The name of the security group | | <a name="output_security_group_name"></a> [security\_group\_name](#output\_security\_group\_name) | The name of the security group |
| <a name="output_this_security_group_owner_id"></a> [this\_security\_group\_owner\_id](#output\_this\_security\_group\_owner\_id) | The owner ID | | <a name="output_security_group_owner_id"></a> [security\_group\_owner\_id](#output\_security\_group\_owner\_id) | The owner ID |
| <a name="output_this_security_group_vpc_id"></a> [this\_security\_group\_vpc\_id](#output\_this\_security\_group\_vpc\_id) | The VPC ID | | <a name="output_security_group_vpc_id"></a> [security\_group\_vpc\_id](#output\_security\_group\_vpc\_id) | The VPC ID |
<!-- END OF PRE-COMMIT-TERRAFORM DOCS HOOK --> <!-- END OF PRE-COMMIT-TERRAFORM DOCS HOOK -->
output "this_security_group_id" { output "security_group_id" {
description = "The ID of the security group" description = "The ID of the security group"
value = module.sg.this_security_group_id value = module.sg.security_group_id
} }
output "this_security_group_vpc_id" { output "security_group_vpc_id" {
description = "The VPC ID" description = "The VPC ID"
value = module.sg.this_security_group_vpc_id value = module.sg.security_group_vpc_id
} }
output "this_security_group_owner_id" { output "security_group_owner_id" {
description = "The owner ID" description = "The owner ID"
value = module.sg.this_security_group_owner_id value = module.sg.security_group_owner_id
} }
output "this_security_group_name" { output "security_group_name" {
description = "The name of the security group" description = "The name of the security group"
value = module.sg.this_security_group_name value = module.sg.security_group_name
} }
output "this_security_group_description" { output "security_group_description" {
description = "The description of the security group" description = "The description of the security group"
value = module.sg.this_security_group_description value = module.sg.security_group_description
} }
...@@ -5,7 +5,7 @@ ...@@ -5,7 +5,7 @@
```hcl ```hcl
module "solr_security_group" { module "solr_security_group" {
source = "terraform-aws-modules/security-group/aws//modules/solr" source = "terraform-aws-modules/security-group/aws//modules/solr"
version = "~> 3.0" version = "~> 4.0"
# omitted... # omitted...
} }
...@@ -111,9 +111,9 @@ No resources. ...@@ -111,9 +111,9 @@ No resources.
| Name | Description | | Name | Description |
|------|-------------| |------|-------------|
| <a name="output_this_security_group_description"></a> [this\_security\_group\_description](#output\_this\_security\_group\_description) | The description of the security group | | <a name="output_security_group_description"></a> [security\_group\_description](#output\_security\_group\_description) | The description of the security group |
| <a name="output_this_security_group_id"></a> [this\_security\_group\_id](#output\_this\_security\_group\_id) | The ID of the security group | | <a name="output_security_group_id"></a> [security\_group\_id](#output\_security\_group\_id) | The ID of the security group |
| <a name="output_this_security_group_name"></a> [this\_security\_group\_name](#output\_this\_security\_group\_name) | The name of the security group | | <a name="output_security_group_name"></a> [security\_group\_name](#output\_security\_group\_name) | The name of the security group |
| <a name="output_this_security_group_owner_id"></a> [this\_security\_group\_owner\_id](#output\_this\_security\_group\_owner\_id) | The owner ID | | <a name="output_security_group_owner_id"></a> [security\_group\_owner\_id](#output\_security\_group\_owner\_id) | The owner ID |
| <a name="output_this_security_group_vpc_id"></a> [this\_security\_group\_vpc\_id](#output\_this\_security\_group\_vpc\_id) | The VPC ID | | <a name="output_security_group_vpc_id"></a> [security\_group\_vpc\_id](#output\_security\_group\_vpc\_id) | The VPC ID |
<!-- END OF PRE-COMMIT-TERRAFORM DOCS HOOK --> <!-- END OF PRE-COMMIT-TERRAFORM DOCS HOOK -->
output "this_security_group_id" { output "security_group_id" {
description = "The ID of the security group" description = "The ID of the security group"
value = module.sg.this_security_group_id value = module.sg.security_group_id
} }
output "this_security_group_vpc_id" { output "security_group_vpc_id" {
description = "The VPC ID" description = "The VPC ID"
value = module.sg.this_security_group_vpc_id value = module.sg.security_group_vpc_id
} }
output "this_security_group_owner_id" { output "security_group_owner_id" {
description = "The owner ID" description = "The owner ID"
value = module.sg.this_security_group_owner_id value = module.sg.security_group_owner_id
} }
output "this_security_group_name" { output "security_group_name" {
description = "The name of the security group" description = "The name of the security group"
value = module.sg.this_security_group_name value = module.sg.security_group_name
} }
output "this_security_group_description" { output "security_group_description" {
description = "The description of the security group" description = "The description of the security group"
value = module.sg.this_security_group_description value = module.sg.security_group_description
} }
...@@ -5,7 +5,7 @@ ...@@ -5,7 +5,7 @@
```hcl ```hcl
module "splunk_security_group" { module "splunk_security_group" {
source = "terraform-aws-modules/security-group/aws//modules/splunk" source = "terraform-aws-modules/security-group/aws//modules/splunk"
version = "~> 3.0" version = "~> 4.0"
# omitted... # omitted...
} }
...@@ -111,9 +111,9 @@ No resources. ...@@ -111,9 +111,9 @@ No resources.
| Name | Description | | Name | Description |
|------|-------------| |------|-------------|
| <a name="output_this_security_group_description"></a> [this\_security\_group\_description](#output\_this\_security\_group\_description) | The description of the security group | | <a name="output_security_group_description"></a> [security\_group\_description](#output\_security\_group\_description) | The description of the security group |
| <a name="output_this_security_group_id"></a> [this\_security\_group\_id](#output\_this\_security\_group\_id) | The ID of the security group | | <a name="output_security_group_id"></a> [security\_group\_id](#output\_security\_group\_id) | The ID of the security group |
| <a name="output_this_security_group_name"></a> [this\_security\_group\_name](#output\_this\_security\_group\_name) | The name of the security group | | <a name="output_security_group_name"></a> [security\_group\_name](#output\_security\_group\_name) | The name of the security group |
| <a name="output_this_security_group_owner_id"></a> [this\_security\_group\_owner\_id](#output\_this\_security\_group\_owner\_id) | The owner ID | | <a name="output_security_group_owner_id"></a> [security\_group\_owner\_id](#output\_security\_group\_owner\_id) | The owner ID |
| <a name="output_this_security_group_vpc_id"></a> [this\_security\_group\_vpc\_id](#output\_this\_security\_group\_vpc\_id) | The VPC ID | | <a name="output_security_group_vpc_id"></a> [security\_group\_vpc\_id](#output\_security\_group\_vpc\_id) | The VPC ID |
<!-- END OF PRE-COMMIT-TERRAFORM DOCS HOOK --> <!-- END OF PRE-COMMIT-TERRAFORM DOCS HOOK -->
output "this_security_group_id" { output "security_group_id" {
description = "The ID of the security group" description = "The ID of the security group"
value = module.sg.this_security_group_id value = module.sg.security_group_id
} }
output "this_security_group_vpc_id" { output "security_group_vpc_id" {
description = "The VPC ID" description = "The VPC ID"
value = module.sg.this_security_group_vpc_id value = module.sg.security_group_vpc_id
} }
output "this_security_group_owner_id" { output "security_group_owner_id" {
description = "The owner ID" description = "The owner ID"
value = module.sg.this_security_group_owner_id value = module.sg.security_group_owner_id
} }
output "this_security_group_name" { output "security_group_name" {
description = "The name of the security group" description = "The name of the security group"
value = module.sg.this_security_group_name value = module.sg.security_group_name
} }
output "this_security_group_description" { output "security_group_description" {
description = "The description of the security group" description = "The description of the security group"
value = module.sg.this_security_group_description value = module.sg.security_group_description
} }
...@@ -5,7 +5,7 @@ ...@@ -5,7 +5,7 @@
```hcl ```hcl
module "squid_security_group" { module "squid_security_group" {
source = "terraform-aws-modules/security-group/aws//modules/squid" source = "terraform-aws-modules/security-group/aws//modules/squid"
version = "~> 3.0" version = "~> 4.0"
# omitted... # omitted...
} }
...@@ -111,9 +111,9 @@ No resources. ...@@ -111,9 +111,9 @@ No resources.
| Name | Description | | Name | Description |
|------|-------------| |------|-------------|
| <a name="output_this_security_group_description"></a> [this\_security\_group\_description](#output\_this\_security\_group\_description) | The description of the security group | | <a name="output_security_group_description"></a> [security\_group\_description](#output\_security\_group\_description) | The description of the security group |
| <a name="output_this_security_group_id"></a> [this\_security\_group\_id](#output\_this\_security\_group\_id) | The ID of the security group | | <a name="output_security_group_id"></a> [security\_group\_id](#output\_security\_group\_id) | The ID of the security group |
| <a name="output_this_security_group_name"></a> [this\_security\_group\_name](#output\_this\_security\_group\_name) | The name of the security group | | <a name="output_security_group_name"></a> [security\_group\_name](#output\_security\_group\_name) | The name of the security group |
| <a name="output_this_security_group_owner_id"></a> [this\_security\_group\_owner\_id](#output\_this\_security\_group\_owner\_id) | The owner ID | | <a name="output_security_group_owner_id"></a> [security\_group\_owner\_id](#output\_security\_group\_owner\_id) | The owner ID |
| <a name="output_this_security_group_vpc_id"></a> [this\_security\_group\_vpc\_id](#output\_this\_security\_group\_vpc\_id) | The VPC ID | | <a name="output_security_group_vpc_id"></a> [security\_group\_vpc\_id](#output\_security\_group\_vpc\_id) | The VPC ID |
<!-- END OF PRE-COMMIT-TERRAFORM DOCS HOOK --> <!-- END OF PRE-COMMIT-TERRAFORM DOCS HOOK -->
output "this_security_group_id" { output "security_group_id" {
description = "The ID of the security group" description = "The ID of the security group"
value = module.sg.this_security_group_id value = module.sg.security_group_id
} }
output "this_security_group_vpc_id" { output "security_group_vpc_id" {
description = "The VPC ID" description = "The VPC ID"
value = module.sg.this_security_group_vpc_id value = module.sg.security_group_vpc_id
} }
output "this_security_group_owner_id" { output "security_group_owner_id" {
description = "The owner ID" description = "The owner ID"
value = module.sg.this_security_group_owner_id value = module.sg.security_group_owner_id
} }
output "this_security_group_name" { output "security_group_name" {
description = "The name of the security group" description = "The name of the security group"
value = module.sg.this_security_group_name value = module.sg.security_group_name
} }
output "this_security_group_description" { output "security_group_description" {
description = "The description of the security group" description = "The description of the security group"
value = module.sg.this_security_group_description value = module.sg.security_group_description
} }
...@@ -5,7 +5,7 @@ ...@@ -5,7 +5,7 @@
```hcl ```hcl
module "ssh_security_group" { module "ssh_security_group" {
source = "terraform-aws-modules/security-group/aws//modules/ssh" source = "terraform-aws-modules/security-group/aws//modules/ssh"
version = "~> 3.0" version = "~> 4.0"
# omitted... # omitted...
} }
...@@ -111,9 +111,9 @@ No resources. ...@@ -111,9 +111,9 @@ No resources.
| Name | Description | | Name | Description |
|------|-------------| |------|-------------|
| <a name="output_this_security_group_description"></a> [this\_security\_group\_description](#output\_this\_security\_group\_description) | The description of the security group | | <a name="output_security_group_description"></a> [security\_group\_description](#output\_security\_group\_description) | The description of the security group |
| <a name="output_this_security_group_id"></a> [this\_security\_group\_id](#output\_this\_security\_group\_id) | The ID of the security group | | <a name="output_security_group_id"></a> [security\_group\_id](#output\_security\_group\_id) | The ID of the security group |
| <a name="output_this_security_group_name"></a> [this\_security\_group\_name](#output\_this\_security\_group\_name) | The name of the security group | | <a name="output_security_group_name"></a> [security\_group\_name](#output\_security\_group\_name) | The name of the security group |
| <a name="output_this_security_group_owner_id"></a> [this\_security\_group\_owner\_id](#output\_this\_security\_group\_owner\_id) | The owner ID | | <a name="output_security_group_owner_id"></a> [security\_group\_owner\_id](#output\_security\_group\_owner\_id) | The owner ID |
| <a name="output_this_security_group_vpc_id"></a> [this\_security\_group\_vpc\_id](#output\_this\_security\_group\_vpc\_id) | The VPC ID | | <a name="output_security_group_vpc_id"></a> [security\_group\_vpc\_id](#output\_security\_group\_vpc\_id) | The VPC ID |
<!-- END OF PRE-COMMIT-TERRAFORM DOCS HOOK --> <!-- END OF PRE-COMMIT-TERRAFORM DOCS HOOK -->
output "this_security_group_id" { output "security_group_id" {
description = "The ID of the security group" description = "The ID of the security group"
value = module.sg.this_security_group_id value = module.sg.security_group_id
} }
output "this_security_group_vpc_id" { output "security_group_vpc_id" {
description = "The VPC ID" description = "The VPC ID"
value = module.sg.this_security_group_vpc_id value = module.sg.security_group_vpc_id
} }
output "this_security_group_owner_id" { output "security_group_owner_id" {
description = "The owner ID" description = "The owner ID"
value = module.sg.this_security_group_owner_id value = module.sg.security_group_owner_id
} }
output "this_security_group_name" { output "security_group_name" {
description = "The name of the security group" description = "The name of the security group"
value = module.sg.this_security_group_name value = module.sg.security_group_name
} }
output "this_security_group_description" { output "security_group_description" {
description = "The description of the security group" description = "The description of the security group"
value = module.sg.this_security_group_description value = module.sg.security_group_description
} }
...@@ -5,7 +5,7 @@ ...@@ -5,7 +5,7 @@
```hcl ```hcl
module "storm_security_group" { module "storm_security_group" {
source = "terraform-aws-modules/security-group/aws//modules/storm" source = "terraform-aws-modules/security-group/aws//modules/storm"
version = "~> 3.0" version = "~> 4.0"
# omitted... # omitted...
} }
...@@ -111,9 +111,9 @@ No resources. ...@@ -111,9 +111,9 @@ No resources.
| Name | Description | | Name | Description |
|------|-------------| |------|-------------|
| <a name="output_this_security_group_description"></a> [this\_security\_group\_description](#output\_this\_security\_group\_description) | The description of the security group | | <a name="output_security_group_description"></a> [security\_group\_description](#output\_security\_group\_description) | The description of the security group |
| <a name="output_this_security_group_id"></a> [this\_security\_group\_id](#output\_this\_security\_group\_id) | The ID of the security group | | <a name="output_security_group_id"></a> [security\_group\_id](#output\_security\_group\_id) | The ID of the security group |
| <a name="output_this_security_group_name"></a> [this\_security\_group\_name](#output\_this\_security\_group\_name) | The name of the security group | | <a name="output_security_group_name"></a> [security\_group\_name](#output\_security\_group\_name) | The name of the security group |
| <a name="output_this_security_group_owner_id"></a> [this\_security\_group\_owner\_id](#output\_this\_security\_group\_owner\_id) | The owner ID | | <a name="output_security_group_owner_id"></a> [security\_group\_owner\_id](#output\_security\_group\_owner\_id) | The owner ID |
| <a name="output_this_security_group_vpc_id"></a> [this\_security\_group\_vpc\_id](#output\_this\_security\_group\_vpc\_id) | The VPC ID | | <a name="output_security_group_vpc_id"></a> [security\_group\_vpc\_id](#output\_security\_group\_vpc\_id) | The VPC ID |
<!-- END OF PRE-COMMIT-TERRAFORM DOCS HOOK --> <!-- END OF PRE-COMMIT-TERRAFORM DOCS HOOK -->
output "this_security_group_id" { output "security_group_id" {
description = "The ID of the security group" description = "The ID of the security group"
value = module.sg.this_security_group_id value = module.sg.security_group_id
} }
output "this_security_group_vpc_id" { output "security_group_vpc_id" {
description = "The VPC ID" description = "The VPC ID"
value = module.sg.this_security_group_vpc_id value = module.sg.security_group_vpc_id
} }
output "this_security_group_owner_id" { output "security_group_owner_id" {
description = "The owner ID" description = "The owner ID"
value = module.sg.this_security_group_owner_id value = module.sg.security_group_owner_id
} }
output "this_security_group_name" { output "security_group_name" {
description = "The name of the security group" description = "The name of the security group"
value = module.sg.this_security_group_name value = module.sg.security_group_name
} }
output "this_security_group_description" { output "security_group_description" {
description = "The description of the security group" description = "The description of the security group"
value = module.sg.this_security_group_description value = module.sg.security_group_description
} }
...@@ -5,7 +5,7 @@ ...@@ -5,7 +5,7 @@
```hcl ```hcl
module "web_security_group" { module "web_security_group" {
source = "terraform-aws-modules/security-group/aws//modules/web" source = "terraform-aws-modules/security-group/aws//modules/web"
version = "~> 3.0" version = "~> 4.0"
# omitted... # omitted...
} }
...@@ -111,9 +111,9 @@ No resources. ...@@ -111,9 +111,9 @@ No resources.
| Name | Description | | Name | Description |
|------|-------------| |------|-------------|
| <a name="output_this_security_group_description"></a> [this\_security\_group\_description](#output\_this\_security\_group\_description) | The description of the security group | | <a name="output_security_group_description"></a> [security\_group\_description](#output\_security\_group\_description) | The description of the security group |
| <a name="output_this_security_group_id"></a> [this\_security\_group\_id](#output\_this\_security\_group\_id) | The ID of the security group | | <a name="output_security_group_id"></a> [security\_group\_id](#output\_security\_group\_id) | The ID of the security group |
| <a name="output_this_security_group_name"></a> [this\_security\_group\_name](#output\_this\_security\_group\_name) | The name of the security group | | <a name="output_security_group_name"></a> [security\_group\_name](#output\_security\_group\_name) | The name of the security group |
| <a name="output_this_security_group_owner_id"></a> [this\_security\_group\_owner\_id](#output\_this\_security\_group\_owner\_id) | The owner ID | | <a name="output_security_group_owner_id"></a> [security\_group\_owner\_id](#output\_security\_group\_owner\_id) | The owner ID |
| <a name="output_this_security_group_vpc_id"></a> [this\_security\_group\_vpc\_id](#output\_this\_security\_group\_vpc\_id) | The VPC ID | | <a name="output_security_group_vpc_id"></a> [security\_group\_vpc\_id](#output\_security\_group\_vpc\_id) | The VPC ID |
<!-- END OF PRE-COMMIT-TERRAFORM DOCS HOOK --> <!-- END OF PRE-COMMIT-TERRAFORM DOCS HOOK -->
output "this_security_group_id" { output "security_group_id" {
description = "The ID of the security group" description = "The ID of the security group"
value = module.sg.this_security_group_id value = module.sg.security_group_id
} }
output "this_security_group_vpc_id" { output "security_group_vpc_id" {
description = "The VPC ID" description = "The VPC ID"
value = module.sg.this_security_group_vpc_id value = module.sg.security_group_vpc_id
} }
output "this_security_group_owner_id" { output "security_group_owner_id" {
description = "The owner ID" description = "The owner ID"
value = module.sg.this_security_group_owner_id value = module.sg.security_group_owner_id
} }
output "this_security_group_name" { output "security_group_name" {
description = "The name of the security group" description = "The name of the security group"
value = module.sg.this_security_group_name value = module.sg.security_group_name
} }
output "this_security_group_description" { output "security_group_description" {
description = "The description of the security group" description = "The description of the security group"
value = module.sg.this_security_group_description value = module.sg.security_group_description
} }
...@@ -5,7 +5,7 @@ ...@@ -5,7 +5,7 @@
```hcl ```hcl
module "winrm_security_group" { module "winrm_security_group" {
source = "terraform-aws-modules/security-group/aws//modules/winrm" source = "terraform-aws-modules/security-group/aws//modules/winrm"
version = "~> 3.0" version = "~> 4.0"
# omitted... # omitted...
} }
...@@ -111,9 +111,9 @@ No resources. ...@@ -111,9 +111,9 @@ No resources.
| Name | Description | | Name | Description |
|------|-------------| |------|-------------|
| <a name="output_this_security_group_description"></a> [this\_security\_group\_description](#output\_this\_security\_group\_description) | The description of the security group | | <a name="output_security_group_description"></a> [security\_group\_description](#output\_security\_group\_description) | The description of the security group |
| <a name="output_this_security_group_id"></a> [this\_security\_group\_id](#output\_this\_security\_group\_id) | The ID of the security group | | <a name="output_security_group_id"></a> [security\_group\_id](#output\_security\_group\_id) | The ID of the security group |
| <a name="output_this_security_group_name"></a> [this\_security\_group\_name](#output\_this\_security\_group\_name) | The name of the security group | | <a name="output_security_group_name"></a> [security\_group\_name](#output\_security\_group\_name) | The name of the security group |
| <a name="output_this_security_group_owner_id"></a> [this\_security\_group\_owner\_id](#output\_this\_security\_group\_owner\_id) | The owner ID | | <a name="output_security_group_owner_id"></a> [security\_group\_owner\_id](#output\_security\_group\_owner\_id) | The owner ID |
| <a name="output_this_security_group_vpc_id"></a> [this\_security\_group\_vpc\_id](#output\_this\_security\_group\_vpc\_id) | The VPC ID | | <a name="output_security_group_vpc_id"></a> [security\_group\_vpc\_id](#output\_security\_group\_vpc\_id) | The VPC ID |
<!-- END OF PRE-COMMIT-TERRAFORM DOCS HOOK --> <!-- END OF PRE-COMMIT-TERRAFORM DOCS HOOK -->
output "this_security_group_id" { output "security_group_id" {
description = "The ID of the security group" description = "The ID of the security group"
value = module.sg.this_security_group_id value = module.sg.security_group_id
} }
output "this_security_group_vpc_id" { output "security_group_vpc_id" {
description = "The VPC ID" description = "The VPC ID"
value = module.sg.this_security_group_vpc_id value = module.sg.security_group_vpc_id
} }
output "this_security_group_owner_id" { output "security_group_owner_id" {
description = "The owner ID" description = "The owner ID"
value = module.sg.this_security_group_owner_id value = module.sg.security_group_owner_id
} }
output "this_security_group_name" { output "security_group_name" {
description = "The name of the security group" description = "The name of the security group"
value = module.sg.this_security_group_name value = module.sg.security_group_name
} }
output "this_security_group_description" { output "security_group_description" {
description = "The description of the security group" description = "The description of the security group"
value = module.sg.this_security_group_description value = module.sg.security_group_description
} }
...@@ -5,7 +5,7 @@ ...@@ -5,7 +5,7 @@
```hcl ```hcl
module "zipkin_security_group" { module "zipkin_security_group" {
source = "terraform-aws-modules/security-group/aws//modules/zipkin" source = "terraform-aws-modules/security-group/aws//modules/zipkin"
version = "~> 3.0" version = "~> 4.0"
# omitted... # omitted...
} }
...@@ -111,9 +111,9 @@ No resources. ...@@ -111,9 +111,9 @@ No resources.
| Name | Description | | Name | Description |
|------|-------------| |------|-------------|
| <a name="output_this_security_group_description"></a> [this\_security\_group\_description](#output\_this\_security\_group\_description) | The description of the security group | | <a name="output_security_group_description"></a> [security\_group\_description](#output\_security\_group\_description) | The description of the security group |
| <a name="output_this_security_group_id"></a> [this\_security\_group\_id](#output\_this\_security\_group\_id) | The ID of the security group | | <a name="output_security_group_id"></a> [security\_group\_id](#output\_security\_group\_id) | The ID of the security group |
| <a name="output_this_security_group_name"></a> [this\_security\_group\_name](#output\_this\_security\_group\_name) | The name of the security group | | <a name="output_security_group_name"></a> [security\_group\_name](#output\_security\_group\_name) | The name of the security group |
| <a name="output_this_security_group_owner_id"></a> [this\_security\_group\_owner\_id](#output\_this\_security\_group\_owner\_id) | The owner ID | | <a name="output_security_group_owner_id"></a> [security\_group\_owner\_id](#output\_security\_group\_owner\_id) | The owner ID |
| <a name="output_this_security_group_vpc_id"></a> [this\_security\_group\_vpc\_id](#output\_this\_security\_group\_vpc\_id) | The VPC ID | | <a name="output_security_group_vpc_id"></a> [security\_group\_vpc\_id](#output\_security\_group\_vpc\_id) | The VPC ID |
<!-- END OF PRE-COMMIT-TERRAFORM DOCS HOOK --> <!-- END OF PRE-COMMIT-TERRAFORM DOCS HOOK -->
output "this_security_group_id" { output "security_group_id" {
description = "The ID of the security group" description = "The ID of the security group"
value = module.sg.this_security_group_id value = module.sg.security_group_id
} }
output "this_security_group_vpc_id" { output "security_group_vpc_id" {
description = "The VPC ID" description = "The VPC ID"
value = module.sg.this_security_group_vpc_id value = module.sg.security_group_vpc_id
} }
output "this_security_group_owner_id" { output "security_group_owner_id" {
description = "The owner ID" description = "The owner ID"
value = module.sg.this_security_group_owner_id value = module.sg.security_group_owner_id
} }
output "this_security_group_name" { output "security_group_name" {
description = "The name of the security group" description = "The name of the security group"
value = module.sg.this_security_group_name value = module.sg.security_group_name
} }
output "this_security_group_description" { output "security_group_description" {
description = "The description of the security group" description = "The description of the security group"
value = module.sg.this_security_group_description value = module.sg.security_group_description
} }
...@@ -5,7 +5,7 @@ ...@@ -5,7 +5,7 @@
```hcl ```hcl
module "zookeeper_security_group" { module "zookeeper_security_group" {
source = "terraform-aws-modules/security-group/aws//modules/zookeeper" source = "terraform-aws-modules/security-group/aws//modules/zookeeper"
version = "~> 3.0" version = "~> 4.0"
# omitted... # omitted...
} }
...@@ -111,9 +111,9 @@ No resources. ...@@ -111,9 +111,9 @@ No resources.
| Name | Description | | Name | Description |
|------|-------------| |------|-------------|
| <a name="output_this_security_group_description"></a> [this\_security\_group\_description](#output\_this\_security\_group\_description) | The description of the security group | | <a name="output_security_group_description"></a> [security\_group\_description](#output\_security\_group\_description) | The description of the security group |
| <a name="output_this_security_group_id"></a> [this\_security\_group\_id](#output\_this\_security\_group\_id) | The ID of the security group | | <a name="output_security_group_id"></a> [security\_group\_id](#output\_security\_group\_id) | The ID of the security group |
| <a name="output_this_security_group_name"></a> [this\_security\_group\_name](#output\_this\_security\_group\_name) | The name of the security group | | <a name="output_security_group_name"></a> [security\_group\_name](#output\_security\_group\_name) | The name of the security group |
| <a name="output_this_security_group_owner_id"></a> [this\_security\_group\_owner\_id](#output\_this\_security\_group\_owner\_id) | The owner ID | | <a name="output_security_group_owner_id"></a> [security\_group\_owner\_id](#output\_security\_group\_owner\_id) | The owner ID |
| <a name="output_this_security_group_vpc_id"></a> [this\_security\_group\_vpc\_id](#output\_this\_security\_group\_vpc\_id) | The VPC ID | | <a name="output_security_group_vpc_id"></a> [security\_group\_vpc\_id](#output\_security\_group\_vpc\_id) | The VPC ID |
<!-- END OF PRE-COMMIT-TERRAFORM DOCS HOOK --> <!-- END OF PRE-COMMIT-TERRAFORM DOCS HOOK -->
output "this_security_group_id" { output "security_group_id" {
description = "The ID of the security group" description = "The ID of the security group"
value = module.sg.this_security_group_id value = module.sg.security_group_id
} }
output "this_security_group_vpc_id" { output "security_group_vpc_id" {
description = "The VPC ID" description = "The VPC ID"
value = module.sg.this_security_group_vpc_id value = module.sg.security_group_vpc_id
} }
output "this_security_group_owner_id" { output "security_group_owner_id" {
description = "The owner ID" description = "The owner ID"
value = module.sg.this_security_group_owner_id value = module.sg.security_group_owner_id
} }
output "this_security_group_name" { output "security_group_name" {
description = "The name of the security group" description = "The name of the security group"
value = module.sg.this_security_group_name value = module.sg.security_group_name
} }
output "this_security_group_description" { output "security_group_description" {
description = "The description of the security group" description = "The description of the security group"
value = module.sg.this_security_group_description value = module.sg.security_group_description
} }
output "this_security_group_id" { output "security_group_id" {
description = "The ID of the security group" description = "The ID of the security group"
value = concat( value = concat(
aws_security_group.this.*.id, aws_security_group.this.*.id,
...@@ -7,7 +7,7 @@ output "this_security_group_id" { ...@@ -7,7 +7,7 @@ output "this_security_group_id" {
)[0] )[0]
} }
output "this_security_group_vpc_id" { output "security_group_vpc_id" {
description = "The VPC ID" description = "The VPC ID"
value = concat( value = concat(
aws_security_group.this.*.vpc_id, aws_security_group.this.*.vpc_id,
...@@ -16,7 +16,7 @@ output "this_security_group_vpc_id" { ...@@ -16,7 +16,7 @@ output "this_security_group_vpc_id" {
)[0] )[0]
} }
output "this_security_group_owner_id" { output "security_group_owner_id" {
description = "The owner ID" description = "The owner ID"
value = concat( value = concat(
aws_security_group.this.*.owner_id, aws_security_group.this.*.owner_id,
...@@ -25,7 +25,7 @@ output "this_security_group_owner_id" { ...@@ -25,7 +25,7 @@ output "this_security_group_owner_id" {
)[0] )[0]
} }
output "this_security_group_name" { output "security_group_name" {
description = "The name of the security group" description = "The name of the security group"
value = concat( value = concat(
aws_security_group.this.*.name, aws_security_group.this.*.name,
...@@ -34,7 +34,7 @@ output "this_security_group_name" { ...@@ -34,7 +34,7 @@ output "this_security_group_name" {
)[0] )[0]
} }
output "this_security_group_description" { output "security_group_description" {
description = "The description of the security group" description = "The description of the security group"
value = concat( value = concat(
aws_security_group.this.*.description, aws_security_group.this.*.description,
...@@ -43,11 +43,11 @@ output "this_security_group_description" { ...@@ -43,11 +43,11 @@ output "this_security_group_description" {
)[0] )[0]
} }
//output "this_security_group_ingress" { #output "security_group_ingress" {
// description = "The ingress rules" # description = "The ingress rules"
// value = "${element(concat(aws_security_group.this.*.ingress, list("")), 0)}" # value = "${element(concat(aws_security_group.this.*.ingress, list("")), 0)}"
//} #}
//output "this_security_group_egress" { #output "security_group_egress" {
// description = "The egress rules" # description = "The egress rules"
// value = "${element(concat(aws_security_group.this.*.egress, list("")), 0)" # value = "${element(concat(aws_security_group.this.*.egress, list("")), 0)"
//} #}
...@@ -220,7 +220,7 @@ EOF ...@@ -220,7 +220,7 @@ EOF
\`\`\`hcl \`\`\`hcl
module "${group/-/_}_security_group" { module "${group/-/_}_security_group" {
source = "terraform-aws-modules/security-group/aws//modules/${group}" source = "terraform-aws-modules/security-group/aws//modules/${group}"
version = "~> 3.0" version = "~> 4.0"
# omitted... # omitted...
} }
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment