Skip to content

Commit

Permalink
Fix streamnative_org_id length limit
Browse files Browse the repository at this point in the history
  • Loading branch information
ciiiii committed Jul 26, 2024
1 parent 1c1002f commit 250cc84
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions modules/gcp/vendor-access/common.tf
Original file line number Diff line number Diff line change
Expand Up @@ -36,8 +36,8 @@ variable "streamnative_org_id" {
type = string
description = "Your Organization ID within StreamNative Cloud, used as name of impersonation GSA in your project. This will be the organization ID in the StreamNative console, e.g. \"o-xhopj\"."
validation {
condition = length(var.streamnative_org_id) <= 12
error_message = "The organization ID must not exceed 12 characters. If you reach this limit, please contact StreamNative support."
condition = length(var.streamnative_org_id) <= 18
error_message = "The organization ID must not exceed 18 characters. If you reach this limit, please contact StreamNative support."
}
}

Expand Down

0 comments on commit 250cc84

Please sign in to comment.