Skip to content

Commit

Permalink
feedback
Browse files Browse the repository at this point in the history
  • Loading branch information
nkvuong committed Apr 5, 2024
1 parent 2a52899 commit b27ceea
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion mws/resource_mws_ncc_binding.go
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,9 @@ func ResourceMwsNccBinding() common.Resource {
Schema: s,
Create: createOrUpdate,
Read: func(ctx context.Context, d *schema.ResourceData, c *common.DatabricksClient) error {
log.Print("[WARN] Importing this NCC binding is not enabled, skipping...")
if d.IsNewResource() {
log.Print("[WARN] Importing NCC binding is not supported, skipping...")
}
return nil
},
Update: createOrUpdate,
Expand Down

0 comments on commit b27ceea

Please sign in to comment.