Skip to content

Commit

Permalink
fix(LH-71961): SDC public key not available after creation (#95)
Browse files Browse the repository at this point in the history
  • Loading branch information
weilueluo authored Nov 2, 2023
1 parent 7bd446f commit 657576b
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions docs/resources/sdc.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,12 +3,12 @@
page_title: "cdo_sdc Resource - cdo"
subcategory: ""
description: |-
Provides an SDC connector resource. This allows SDC to be onboarded, updated, and deleted on CDO.
Provides an SDC connector resource. This allows SDC to be onboarded, updated, and deleted on CDO. Note: If you receive errors that read "public key not found", it is likely because you attempted to utilize the cdosdc resource before it has finished configuring itself, which is an asynchronous processor. To fix this, use the cdosdconboarding resource before utilizing the cdosdc to onboard any devices.
---

# cdo_sdc (Resource)

Provides an SDC connector resource. This allows SDC to be onboarded, updated, and deleted on CDO.
Provides an SDC connector resource. This allows SDC to be onboarded, updated, and deleted on CDO. **Note**: If you receive errors that read "public key not found", it is likely because you attempted to utilize the cdo_sdc resource before it has finished configuring itself, which is an asynchronous processor. To fix this, use the cdo_sdc_onboarding resource before utilizing the cdo_sdc to onboard any devices.



Expand Down
2 changes: 1 addition & 1 deletion provider/internal/connector/resource.go
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ func (r *Resource) Metadata(ctx context.Context, req resource.MetadataRequest, r

func (r *Resource) Schema(ctx context.Context, req resource.SchemaRequest, resp *resource.SchemaResponse) {
resp.Schema = schema.Schema{
MarkdownDescription: "Provides an SDC connector resource. This allows SDC to be onboarded, updated, and deleted on CDO.",
MarkdownDescription: "Provides an SDC connector resource. This allows SDC to be onboarded, updated, and deleted on CDO. **Note**: If you receive errors that read \"public key not found\", it is likely because you attempted to utilize the cdo_sdc resource before it has finished configuring itself, which is an asynchronous processor. To fix this, use the cdo_sdc_onboarding resource before utilizing the cdo_sdc to onboard any devices.",

Attributes: map[string]schema.Attribute{
"id": schema.StringAttribute{
Expand Down

0 comments on commit 657576b

Please sign in to comment.