Skip to content

Commit

Permalink
Fixes #23 (#24)
Browse files Browse the repository at this point in the history
* Fixes #23

* Remove newline

* Run make docs

Co-authored-by: brian.teague <[email protected]>
  • Loading branch information
BrianDMG and brian.teague authored Apr 8, 2022
1 parent f74370f commit c283fd4
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion docs/resources/user_attribute_group_value.md
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ resource "looker_user_attribute_group_value" "my_user_attribute_group_value" {
### Required

- `group_id` (String)
- `user_attribute_id` (Number)
- `user_attribute_id` (String)
- `value` (String)

### Optional
Expand Down
2 changes: 1 addition & 1 deletion pkg/looker/resource_user_attribute_group_value.go
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ func resourceUserAttributeGroupValue() *schema.Resource {

Schema: map[string]*schema.Schema{
"user_attribute_id": {
Type: schema.TypeInt,
Type: schema.TypeString,
Required: true,
},
"group_id": {
Expand Down

0 comments on commit c283fd4

Please sign in to comment.