Skip to content

Commit

Permalink
Change Required to Computed for fields in DS
Browse files Browse the repository at this point in the history
  • Loading branch information
andriikushch committed Dec 12, 2024
1 parent 0dca871 commit f536551
Showing 1 changed file with 4 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -58,19 +58,19 @@ func (r *datasourceAzureCredential) Schema(ctx context.Context, req datasource.S
},
"name": schema.StringAttribute{
Description: "The name of the Azure Credential.",
Required: true,
Computed: true,
},
"client_id": schema.StringAttribute{
Description: "The client ID of the Azure Credential.",
Required: true,
Computed: true,
},
"tenant_id": schema.StringAttribute{
Description: "The tenant ID of the Azure Credential.",
Required: true,
Computed: true,
},
"client_secret": schema.StringAttribute{
Description: "The client secret of the Azure Credential.",
Required: true,
Computed: true,
Sensitive: true,
},
},
Expand Down

0 comments on commit f536551

Please sign in to comment.