diff --git a/modules/aws-asg/README.md b/modules/aws-asg/README.md
index fe6be24..7306a0e 100644
--- a/modules/aws-asg/README.md
+++ b/modules/aws-asg/README.md
@@ -12,9 +12,9 @@
| Name | Version |
|------|---------|
-| [aws](#provider\_aws) | 4.18.0 |
+| [aws](#provider\_aws) | 4.20.1 |
| [null](#provider\_null) | 3.1.1 |
-| [random](#provider\_random) | 3.3.1 |
+| [random](#provider\_random) | 3.3.2 |
## Modules
@@ -68,7 +68,7 @@ No modules.
| [cloudwatch\_logs\_enabled](#input\_cloudwatch\_logs\_enabled) | Set to true to send '/var/log/message' logs to CloudWatch | `bool` | `true` | no |
| [launch\_tmpl\_associate\_public\_ip\_address](#input\_launch\_tmpl\_associate\_public\_ip\_address) | Associate a public ip address with an instance in a VPC | `bool` | `false` | no |
| [launch\_tmpl\_instance\_type](#input\_launch\_tmpl\_instance\_type) | The type of instance to use (e.g. t3.micro, t3.small, t3.medium, etc) | `string` | `"t3.small"` | no |
-| [module\_version](#input\_module\_version) | Terraform module version | `string` | `"v2.0.0"` | no |
+| [module\_version](#input\_module\_version) | Terraform module version | `string` | `"v2.0.1"` | no |
| [nlb\_enable\_cross\_zone\_load\_balancing](#input\_nlb\_enable\_cross\_zone\_load\_balancing) | Configure cross zone load balancing for the NLB | `bool` | `false` | no |
| [nlb\_subnets](#input\_nlb\_subnets) | A list of public subnet IDs to attach to the LB. Use Public Subnets only | `list(string)` | n/a | yes |
| [redis\_subnets](#input\_redis\_subnets) | A list of subnet IDs to to use for the redis instances.
At least two subnets on different Availability Zones must be provided | `list(any)` | `[]` | no |
diff --git a/modules/aws-asg/examples/cga-with-vpc/README.md b/modules/aws-asg/examples/cga-with-vpc/README.md
index 4696af1..f0fba01 100644
--- a/modules/aws-asg/examples/cga-with-vpc/README.md
+++ b/modules/aws-asg/examples/cga-with-vpc/README.md
@@ -7,7 +7,7 @@ No requirements.
| Name | Version |
|------|---------|
-| [aws](#provider\_aws) | 4.18.0 |
+| [aws](#provider\_aws) | 4.20.1 |
## Modules
diff --git a/modules/aws-asg/variables.tf b/modules/aws-asg/variables.tf
index 7a61bf0..0ecce71 100644
--- a/modules/aws-asg/variables.tf
+++ b/modules/aws-asg/variables.tf
@@ -23,7 +23,7 @@ variable "cloudgen_access_proxy_token" {
sensitive = true
validation {
condition = can(
- regex("^https://.+[.]fyde[.]com/proxies.+proxy_auth_token.+$",
+ regex("^https:\\/\\/[a-zA-Z0-9.-]+\\.(fyde\\.com|access\\.barracuda\\.com)\\/proxies/v[0-9]+\\/enrollment\\/[0-9a-fA-F]{8}-([0-9a-fA-F]{4}-){3}[0-9a-fA-F]{12}\\?proxy_auth_token=[0-9a-zA-Z]+&tenant_id=[0-9a-fA-F]{8}-([0-9a-fA-F]{4}-){3}[0-9a-fA-F]{12}$",
var.cloudgen_access_proxy_token)
)
error_message = "Provided CloudGen Access Proxy Token doesn't match the expected format."
@@ -44,7 +44,7 @@ variable "cloudgen_access_proxy_level" {
variable "module_version" {
description = "Terraform module version"
type = string
- default = "v2.0.0"
+ default = "v2.0.1"
}
#