Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

chore: modified changelog #10

Merged
merged 1 commit into from
Oct 8, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
13 changes: 13 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,2 +1,15 @@
CHANGELOG
=========

## [0.1.0] - 2024-10-08

### Added:

* **New Data Source:** `cratedb_cluster`
* **New Data Source:** `cratedb_organization`
* **New Data Source:** `cratedb_organizations`
* **New Data Source:** `cratedb_project`

* **New Resource:** `cratedb_cluster`
* **New Resource:** `cratedb_organization`
* **New Resource:** `cratedb_project`
2 changes: 1 addition & 1 deletion internal/provider/cluster_resource.go
Original file line number Diff line number Diff line change
Expand Up @@ -406,7 +406,7 @@ func (r *ClusterResource) Read(ctx context.Context, req resource.ReadRequest, re
return
}

// Get refreshed cluster value from InfluxDB
// Get refreshed cluster value from API
password := state.Password
organizationId := state.OrganizationId
readClusterResponse, err := r.client.GetApiV2ClustersClusterIdWithResponse(ctx, state.Id.ValueString())
Expand Down
2 changes: 1 addition & 1 deletion internal/provider/organization_resource.go
Original file line number Diff line number Diff line change
Expand Up @@ -152,7 +152,7 @@ func (r *OrganizationResource) Read(ctx context.Context, req resource.ReadReques
return
}

// Get refreshed organization value from InfluxDB
// Get refreshed organization value from API
readOrganizationResponse, err := r.client.GetApiV2OrganizationsOrganizationIdWithResponse(ctx, state.Id.ValueString())
if err != nil {
resp.Diagnostics.AddError(
Expand Down
2 changes: 1 addition & 1 deletion internal/provider/project_resource.go
Original file line number Diff line number Diff line change
Expand Up @@ -150,7 +150,7 @@ func (r *ProjectResource) Read(ctx context.Context, req resource.ReadRequest, re
return
}

// Get refreshed project value from InfluxDB
// Get refreshed project value from API
readProjectResponse, err := r.client.GetApiV2ProjectsProjectIdWithResponse(ctx, state.Id.ValueString())
if err != nil {
resp.Diagnostics.AddError(
Expand Down
Loading