Skip to content

Commit

Permalink
Merge pull request #27744 from pierskarsenbarg/increase-redirect-url-…
Browse files Browse the repository at this point in the history
…length

Update validation rule in appstream stack resource
  • Loading branch information
jar-b authored Nov 15, 2022
2 parents 92a44df + cb620d1 commit d5ddeed
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 1 deletion.
3 changes: 3 additions & 0 deletions .changelog/27744.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
```release-note:bug
resource/aws_appstream_stack: Fix `redirect_url` max character length
```
2 changes: 1 addition & 1 deletion internal/service/appstream/stack.go
Original file line number Diff line number Diff line change
Expand Up @@ -129,7 +129,7 @@ func ResourceStack() *schema.Resource {
Type: schema.TypeString,
Optional: true,
Computed: true,
ValidateFunc: validation.StringLenBetween(0, 100),
ValidateFunc: validation.StringLenBetween(0, 1000),
},
"storage_connectors": {
Type: schema.TypeSet,
Expand Down

0 comments on commit d5ddeed

Please sign in to comment.