Skip to content

Commit

Permalink
fix provider mux
Browse files Browse the repository at this point in the history
  • Loading branch information
beevital committed Nov 15, 2023
1 parent 972665c commit 6a6b4bb
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions fivetran/framework/provider.go
Original file line number Diff line number Diff line change
Expand Up @@ -42,8 +42,8 @@ func (p *fivetranProvider) Metadata(ctx context.Context, req provider.MetadataRe
func (p *fivetranProvider) Schema(ctx context.Context, req provider.SchemaRequest, resp *provider.SchemaResponse) {
resp.Schema = schema.Schema{
Attributes: map[string]schema.Attribute{
"api_key": schema.StringAttribute{Required: true},
"api_secret": schema.StringAttribute{Required: true, Sensitive: true},
"api_key": schema.StringAttribute{Optional: true},
"api_secret": schema.StringAttribute{Optional: true, Sensitive: true},
"api_url": schema.StringAttribute{Optional: true},
},
}
Expand Down

0 comments on commit 6a6b4bb

Please sign in to comment.