You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Description:
This issue extends from issue #40 to support hyphens in the custom property value, similar to the support that was added in for the key.
Currently the regex only supports alphanumeric characters and underscores with the following regex /^[a-zA-Z0-9](\w|_){1,128}$ and should be extended to /^[a-zA-Z0-9](\w|-|_){1,128}$.
ValidateFunc: validation.StringMatch(regexp.MustCompile(`^[a-zA-Z0-9](\w|_){1,128}$`), "custom_properties value can only consist of alphanumeric and underscore characters with no whitespace"),
The text was updated successfully, but these errors were encountered:
Description:
This issue extends from issue #40 to support hyphens in the custom property value, similar to the support that was added in for the key.
Currently the regex only supports alphanumeric characters and underscores with the following regex
/^[a-zA-Z0-9](\w|_){1,128}$
and should be extended to/^[a-zA-Z0-9](\w|-|_){1,128}$
.Additional Information:
terraform-provider-synthetics/synthetics/resource_api_check_v2.go
Line 211 in 3d51d05
The text was updated successfully, but these errors were encountered: