Skip to content

Commit

Permalink
Merge pull request #27184 from bschaatsbergen/b/fix-type
Browse files Browse the repository at this point in the history
Fix incorrect type on IdentityStore user resource / data source
  • Loading branch information
ewbankkit authored Oct 10, 2022
2 parents cba615d + 0b45c63 commit dc3534d
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 2 deletions.
7 changes: 7 additions & 0 deletions .changelog/27184.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
```release-note:bug
data-source/aws_identitystore_user: Change the type of `external_ids` to a string instead of a bool.
```

```release-note:bug
aws_identitystore_user: Change the type of `external_ids` to a string instead of a bool.
```
2 changes: 1 addition & 1 deletion internal/service/identitystore/user.go
Original file line number Diff line number Diff line change
Expand Up @@ -117,7 +117,7 @@ func ResourceUser() *schema.Resource {
Elem: &schema.Resource{
Schema: map[string]*schema.Schema{
"id": {
Type: schema.TypeBool,
Type: schema.TypeString,
Computed: true,
},
"issuer": {
Expand Down
2 changes: 1 addition & 1 deletion internal/service/identitystore/user_data_source.go
Original file line number Diff line number Diff line change
Expand Up @@ -138,7 +138,7 @@ func DataSourceUser() *schema.Resource {
Elem: &schema.Resource{
Schema: map[string]*schema.Schema{
"id": {
Type: schema.TypeBool,
Type: schema.TypeString,
Computed: true,
},
"issuer": {
Expand Down

0 comments on commit dc3534d

Please sign in to comment.