diff --git a/modules/terraform-zsac-bastion-aws/README.md b/modules/terraform-zsac-bastion-aws/README.md
index 7be87a5..7f9fbe0 100644
--- a/modules/terraform-zsac-bastion-aws/README.md
+++ b/modules/terraform-zsac-bastion-aws/README.md
@@ -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.
## Requirements
@@ -50,7 +50,7 @@ No modules.
| [name\_prefix](#input\_name\_prefix) | A prefix to associate to all the Workload module resources | `string` | `null` | no |
| [public\_subnet](#input\_public\_subnet) | The public subnet where the bastion host has to be attached | `string` | n/a | yes |
| [resource\_tag](#input\_resource\_tag) | A tag to associate to all the Workload module resources | `string` | `null` | no |
-| [vpc\_id](#input\_vpc\_id) | Cloud Connector VPC ID | `string` | n/a | yes |
+| [vpc\_id](#input\_vpc\_id) | App Connector VPC ID | `string` | n/a | yes |
## Outputs
diff --git a/modules/terraform-zsac-bastion-aws/variables.tf b/modules/terraform-zsac-bastion-aws/variables.tf
index fe96fce..98bab64 100755
--- a/modules/terraform-zsac-bastion-aws/variables.tf
+++ b/modules/terraform-zsac-bastion-aws/variables.tf
@@ -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" {
diff --git a/modules/terraform-zsac-sg-aws/README.md b/modules/terraform-zsac-sg-aws/README.md
index 2e699af..14ee185 100644
--- a/modules/terraform-zsac-sg-aws/README.md
+++ b/modules/terraform-zsac-sg-aws/README.md
@@ -33,9 +33,8 @@ No modules.
| Name | Description | Type | Default | Required |
|------|-------------|------|---------|:--------:|
-| [byo\_mgmt\_security\_group\_id](#input\_byo\_mgmt\_security\_group\_id) | Management Security Group ID for App Connector association | `list(string)` | `null` | no |
| [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 |
-| [byo\_service\_security\_group\_id](#input\_byo\_service\_security\_group\_id) | Service Security Group ID for App Connector association | `list(string)` | `null` | no |
+| [byo\_security\_group\_id](#input\_byo\_security\_group\_id) | Management Security Group ID for App Connector association | `list(string)` | `null` | no |
| [global\_tags](#input\_global\_tags) | Populate any custom user defined tags from a map | `map(string)` | `{}` | no |
| [name\_prefix](#input\_name\_prefix) | A prefix to associate to all the App Connector Security Group module resources | `string` | `null` | no |
| [resource\_tag](#input\_resource\_tag) | A tag to associate to all the App Connector Security Group module resources | `string` | `null` | no |
diff --git a/modules/terraform-zsac-sg-aws/variables.tf b/modules/terraform-zsac-sg-aws/variables.tf
index 9cb69a6..1b4f8c0 100755
--- a/modules/terraform-zsac-sg-aws/variables.tf
+++ b/modules/terraform-zsac-sg-aws/variables.tf
@@ -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
-}
+}
\ No newline at end of file