Skip to content

Commit

Permalink
fix: variable name cleanup
Browse files Browse the repository at this point in the history
  • Loading branch information
jmolnar-zscaler committed Sep 8, 2022
1 parent 84a6638 commit 92c0625
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 14 deletions.
6 changes: 3 additions & 3 deletions modules/terraform-zsac-bastion-aws/README.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# Zscaler Cloud Connector / AWS EC2 Instance (Bastion Host) Module
# Zscaler App Connector / AWS EC2 Instance (Bastion Host) Module

This module creates all AWS EC2 instance, IAM, and Security Group resources needed to deploy a publicly accessible bastion/jump host for Cloud Connector Greenfield/POV environments.
This module creates all AWS EC2 instance, IAM, and Security Group resources needed to deploy a publicly accessible bastion/jump host for App Connector Greenfield/POV environments.

<!-- BEGINNING OF PRE-COMMIT-TERRAFORM DOCS HOOK -->
## Requirements
Expand Down Expand Up @@ -50,7 +50,7 @@ No modules.
| <a name="input_name_prefix"></a> [name\_prefix](#input\_name\_prefix) | A prefix to associate to all the Workload module resources | `string` | `null` | no |
| <a name="input_public_subnet"></a> [public\_subnet](#input\_public\_subnet) | The public subnet where the bastion host has to be attached | `string` | n/a | yes |
| <a name="input_resource_tag"></a> [resource\_tag](#input\_resource\_tag) | A tag to associate to all the Workload module resources | `string` | `null` | no |
| <a name="input_vpc_id"></a> [vpc\_id](#input\_vpc\_id) | Cloud Connector VPC ID | `string` | n/a | yes |
| <a name="input_vpc_id"></a> [vpc\_id](#input\_vpc\_id) | App Connector VPC ID | `string` | n/a | yes |

## Outputs

Expand Down
2 changes: 1 addition & 1 deletion modules/terraform-zsac-bastion-aws/variables.tf
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ variable "global_tags" {

variable "vpc_id" {
type = string
description = "Cloud Connector VPC ID"
description = "App Connector VPC ID"
}

variable "public_subnet" {
Expand Down
3 changes: 1 addition & 2 deletions modules/terraform-zsac-sg-aws/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -33,9 +33,8 @@ No modules.

| Name | Description | Type | Default | Required |
|------|-------------|------|---------|:--------:|
| <a name="input_byo_mgmt_security_group_id"></a> [byo\_mgmt\_security\_group\_id](#input\_byo\_mgmt\_security\_group\_id) | Management Security Group ID for App Connector association | `list(string)` | `null` | no |
| <a name="input_byo_security_group"></a> [byo\_security\_group](#input\_byo\_security\_group) | Bring your own Security Group for App Connector. Setting this variable to true will effectively instruct this module to not create any resources and only reference data resources from values provided in byo\_mgmt\_security\_group\_id and byo\_service\_security\_group\_id | `bool` | `false` | no |
| <a name="input_byo_service_security_group_id"></a> [byo\_service\_security\_group\_id](#input\_byo\_service\_security\_group\_id) | Service Security Group ID for App Connector association | `list(string)` | `null` | no |
| <a name="input_byo_security_group_id"></a> [byo\_security\_group\_id](#input\_byo\_security\_group\_id) | Management Security Group ID for App Connector association | `list(string)` | `null` | no |
| <a name="input_global_tags"></a> [global\_tags](#input\_global\_tags) | Populate any custom user defined tags from a map | `map(string)` | `{}` | no |
| <a name="input_name_prefix"></a> [name\_prefix](#input\_name\_prefix) | A prefix to associate to all the App Connector Security Group module resources | `string` | `null` | no |
| <a name="input_resource_tag"></a> [resource\_tag](#input\_resource\_tag) | A tag to associate to all the App Connector Security Group module resources | `string` | `null` | no |
Expand Down
10 changes: 2 additions & 8 deletions modules/terraform-zsac-sg-aws/variables.tf
Original file line number Diff line number Diff line change
Expand Up @@ -33,14 +33,8 @@ variable "byo_security_group" {
default = false
}

variable "byo_mgmt_security_group_id" {
variable "byo_security_group_id" {
type = list(string)
description = "Management Security Group ID for App Connector association"
default = null
}

variable "byo_service_security_group_id" {
type = list(string)
description = "Service Security Group ID for App Connector association"
default = null
}
}

0 comments on commit 92c0625

Please sign in to comment.