From 13c7574a1f158f33113fb309b1741c0a297693ac Mon Sep 17 00:00:00 2001 From: badra001 Date: Wed, 9 Jun 2021 13:19:15 -0400 Subject: [PATCH] fix labels --- kafka/README.md | 6 +++--- kafka/variables.tf | 6 +++--- 2 files changed, 6 insertions(+), 6 deletions(-) diff --git a/kafka/README.md b/kafka/README.md index 6dfd892..96101ed 100644 --- a/kafka/README.md +++ b/kafka/README.md @@ -54,14 +54,14 @@ No modules. | Name | Description | Type | Default | Required | |------|-------------|------|---------|:--------:| -| [description](#input\_description) | Security Group Description | `string` | `"Web Security Group"` | no | +| [description](#input\_description) | Security Group Description | `string` | `"Kafka Security Group"` | no | | [egress\_networks](#input\_egress\_networks) | List of egress networks (all ports) | `list(string)` |
[
"0.0.0.0/0"
]
| no | | [egress\_security\_groups](#input\_egress\_security\_groups) | List of egress security groups (all ports) | `list(string)` | `[]` | no | | [enable\_self](#input\_enable\_self) | Enable\|Disable self full access | `bool` | `false` | no | | [ingress\_networks](#input\_ingress\_networks) | List of ingress networks for external access (not all ports) | `list(string)` |
[
"0.0.0.0/0"
]
| no | | [ingress\_security\_groups](#input\_ingress\_security\_groups) | List of ingress security groups for all ports | `list(string)` | `[]` | no | -| [name](#input\_name) | Security Group Name | `string` | `"m-web"` | no | -| [short\_description](#input\_short\_description) | Security Group Short Description | `string` | `"Web"` | no | +| [name](#input\_name) | Security Group Name | `string` | `"m-kafka"` | no | +| [short\_description](#input\_short\_description) | Security Group Short Description | `string` | `"Kafka"` | no | | [tags](#input\_tags) | Extra security group tags | `map` |
{
"CostAllocation": "csvd:infrastructure",
"Environment": "csvd-infrastructure"
}
| no | | [use\_vpc\_cidr](#input\_use\_vpc\_cidr) | Enable\|Disable use of VPC CIDR block in the ingress\_networks | `bool` | `false` | no | | [vpc\_full\_name](#input\_vpc\_full\_name) | VPC Name | `string` | `""` | no | diff --git a/kafka/variables.tf b/kafka/variables.tf index 541fb29..3e3cf73 100644 --- a/kafka/variables.tf +++ b/kafka/variables.tf @@ -4,19 +4,19 @@ variable "name" { description = "Security Group Name" type = string - default = "m-web" + default = "m-kafka" } variable "description" { description = "Security Group Description" type = string - default = "Web Security Group" + default = "Kafka Security Group" } variable "short_description" { description = "Security Group Short Description" type = string - default = "Web" + default = "Kafka" } variable "enable_self" {