Skip to content

Commit

Permalink
Fix test fail
Browse files Browse the repository at this point in the history
  • Loading branch information
HuyPhanNguyen committed Aug 8, 2024
1 parent 35b821b commit 1d4f1bf
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions octopusdeploy_framework/schemas/username_password_account.go
Original file line number Diff line number Diff line change
Expand Up @@ -14,10 +14,10 @@ func GetUsernamePasswordAccountResourceSchema() schema.Schema {
"id": util.ResourceString().Optional().Computed().PlanModifiers(stringplanmodifier.UseStateForUnknown()).Description("The unique ID for this resource.").Build(),
"space_id": util.ResourceString().Optional().Computed().PlanModifiers(stringplanmodifier.UseStateForUnknown()).Description("The space ID associated with this resource.").Build(),
"name": util.ResourceString().Required().Description("The name of the username-password account.").Build(),
"description": util.ResourceString().Optional().Description("The description of this username/password resource.").Build(),
"description": util.ResourceString().Optional().Computed().PlanModifiers(stringplanmodifier.UseStateForUnknown()).Default("").Description("The description of this username/password resource.").Build(),
"environments": util.ResourceList(types.StringType).Optional().Description("A list of environment IDs associated with this resource.").Build(),
"password": util.ResourceString().Optional().Sensitive().Description("The password associated with this resource.").Build(),
"tenanted_deployment_participation": util.ResourceString().Optional().Description("The tenanted deployment mode of the resource. Valid account types are `Untenanted`, `TenantedOrUntenanted`, or `Tenanted`.").Build(),
"tenanted_deployment_participation": util.ResourceString().Optional().Optional().Computed().PlanModifiers(stringplanmodifier.UseStateForUnknown()).Description("The tenanted deployment mode of the resource. Valid account types are `Untenanted`, `TenantedOrUntenanted`, or `Tenanted`.").Build(),
"tenants": util.ResourceList(types.StringType).Optional().Description("A list of tenant IDs associated with this resource.").Build(),
"tenant_tags": util.ResourceList(types.StringType).Optional().Description("A list of tenant tags associated with this resource.").Build(),
"username": util.ResourceString().Required().Sensitive().Description("The username associated with this resource.").Build(),
Expand Down

0 comments on commit 1d4f1bf

Please sign in to comment.