Skip to content

Commit

Permalink
Update Docs
Browse files Browse the repository at this point in the history
  • Loading branch information
chriskuchin committed Nov 28, 2023
1 parent 35752ec commit cc8fe2c
Show file tree
Hide file tree
Showing 3 changed files with 39 additions and 5 deletions.
2 changes: 1 addition & 1 deletion docs/resources/group_membership.md

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

34 changes: 34 additions & 0 deletions docs/resources/user.md

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

8 changes: 4 additions & 4 deletions internal/bowtie/resources/user.go
Original file line number Diff line number Diff line change
Expand Up @@ -71,7 +71,7 @@ func (u *UserResource) Schema(ctx context.Context, req resource.SchemaRequest, r
PlanModifiers: []planmodifier.Bool{
boolplanmodifier.UseStateForUnknown(),
},
MarkdownDescription: "Grants the user access to the Devices UI and APIs.",
MarkdownDescription: "Grants the user access to the Devices UI and API.",
},
"authz_policies": schema.BoolAttribute{
Computed: true,
Expand All @@ -80,7 +80,7 @@ func (u *UserResource) Schema(ctx context.Context, req resource.SchemaRequest, r
PlanModifiers: []planmodifier.Bool{
boolplanmodifier.UseStateForUnknown(),
},
MarkdownDescription: "Grants the user access to the Policies UI and APIs.",
MarkdownDescription: "Grants the user access to the Policies UI and API.",
},
"authz_users": schema.BoolAttribute{
Computed: true,
Expand All @@ -89,7 +89,7 @@ func (u *UserResource) Schema(ctx context.Context, req resource.SchemaRequest, r
PlanModifiers: []planmodifier.Bool{
boolplanmodifier.UseStateForUnknown(),
},
MarkdownDescription: "Grants the user access to the Users UI and APIs.",
MarkdownDescription: "Grants the user access to the Users UI and API.",
},
"authz_control_plane": schema.BoolAttribute{
Computed: true,
Expand All @@ -98,7 +98,7 @@ func (u *UserResource) Schema(ctx context.Context, req resource.SchemaRequest, r
PlanModifiers: []planmodifier.Bool{
boolplanmodifier.UseStateForUnknown(),
},
MarkdownDescription: "Grants the user access to the Control Plane UI and APIs.",
MarkdownDescription: "Grants the user access to the Control Plane UI and API.",
},
"role": schema.StringAttribute{
Computed: true,
Expand Down

0 comments on commit cc8fe2c

Please sign in to comment.