Skip to content

Commit 692fe36

Browse files
Set string length to the redirect_url
1 parent 83ede2c commit 692fe36

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

internal/service/appstream/stack.go

+2-2
Original file line numberDiff line numberDiff line change
@@ -75,7 +75,7 @@ func ResourceStack() *schema.Resource {
7575
"settings_group": {
7676
Type: schema.TypeString,
7777
Optional: true,
78-
ValidateFunc: validation.StringLenBetween(0, 1000),
78+
ValidateFunc: validation.StringLenBetween(0, 100),
7979
},
8080
},
8181
},
@@ -129,7 +129,7 @@ func ResourceStack() *schema.Resource {
129129
Type: schema.TypeString,
130130
Optional: true,
131131
Computed: true,
132-
ValidateFunc: validation.StringLenBetween(0, 100),
132+
ValidateFunc: validation.StringLenBetween(0, 1000),
133133
},
134134
"storage_connectors": {
135135
Type: schema.TypeSet,

0 commit comments

Comments
 (0)