Skip to content

Commit d5ddeed

Browse files
authored
Merge pull request #27744 from pierskarsenbarg/increase-redirect-url-length
Update validation rule in appstream stack resource
2 parents 92a44df + cb620d1 commit d5ddeed

File tree

2 files changed

+4
-1
lines changed

2 files changed

+4
-1
lines changed

.changelog/27744.txt

+3
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
```release-note:bug
2+
resource/aws_appstream_stack: Fix `redirect_url` max character length
3+
```

internal/service/appstream/stack.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -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)