Skip to content

Commit

Permalink
fix: [PL-38509]: Spell errors fix
Browse files Browse the repository at this point in the history
  • Loading branch information
VikasMaddukuriHarness committed May 15, 2023
1 parent 4bec4ab commit 39d1879
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions internal/provider/provider.go
Original file line number Diff line number Diff line change
Expand Up @@ -215,7 +215,7 @@ func Provider(version string) func() *schema.Provider {
"harness_platform_policyset": policyset.DataSourcePolicyset(),
"harness_platform_manual_freeze": manual_freeze.DataSourceManualFreeze(),
"harness_platform_connector_service_now": connector.DataSourceConnectorSerivceNow(),
"harness_platform_apiKey": pl_apikey.DataSourceApiKey(),
"harness_platform_apikey": pl_apikey.DataSourceApiKey(),
},
ResourcesMap: map[string]*schema.Resource{
"harness_platform_template": pl_template.ResourceTemplate(),
Expand Down Expand Up @@ -323,7 +323,7 @@ func Provider(version string) func() *schema.Provider {
"harness_platform_policyset": policyset.ResourcePolicyset(),
"harness_platform_manual_freeze": manual_freeze.ResourceManualFreeze(),
"harness_platform_connector_service_now": connector.ResourceConnectorServiceNow(),
"harness_platform_apiKey": pl_apikey.ResourceApiKey(),
"harness_platform_apikey": pl_apikey.ResourceApiKey(),
},
}

Expand Down
2 changes: 1 addition & 1 deletion internal/service/platform/api_key/data_source_apiKey.go
Original file line number Diff line number Diff line change
Expand Up @@ -105,7 +105,7 @@ func dataSourceApiKeyRead(ctx context.Context, d *schema.ResourceData, meta inte
return nil
}
} else {
return diag.FromErr(errors.New("identifier must be specified"))
return diag.FromErr(errors.New("Identifier must be specified"))
}

readApiKey(d, apiKey)
Expand Down

0 comments on commit 39d1879

Please sign in to comment.