123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156 |
- package provider
- import (
- "context"
- "github.com/hashicorp/terraform-plugin-framework/diag"
- "github.com/hashicorp/terraform-plugin-framework/tfsdk"
- "github.com/hashicorp/terraform-plugin-framework/types"
- "github.com/hashicorp/terraform-plugin-go/tftypes"
- "github.com/hashicorp/terraform-plugin-log/tflog"
- )
- var _ tfsdk.ResourceType = exampleResourceType{}
- var _ tfsdk.Resource = exampleResource{}
- var _ tfsdk.ResourceWithImportState = exampleResource{}
- type exampleResourceType struct{}
- func (t exampleResourceType) GetSchema(ctx context.Context) (tfsdk.Schema, diag.Diagnostics) {
- return tfsdk.Schema{
-
- MarkdownDescription: "Example resource",
- Attributes: map[string]tfsdk.Attribute{
- "configurable_attribute": {
- MarkdownDescription: "Example configurable attribute",
- Optional: true,
- Type: types.StringType,
- },
- "id": {
- Computed: true,
- MarkdownDescription: "Example identifier",
- PlanModifiers: tfsdk.AttributePlanModifiers{
- tfsdk.UseStateForUnknown(),
- },
- Type: types.StringType,
- },
- },
- }, nil
- }
- func (t exampleResourceType) NewResource(ctx context.Context, in tfsdk.Provider) (tfsdk.Resource, diag.Diagnostics) {
- provider, diags := convertProviderType(in)
- return exampleResource{
- provider: provider,
- }, diags
- }
- type exampleResourceData struct {
- ConfigurableAttribute types.String `tfsdk:"configurable_attribute"`
- Id types.String `tfsdk:"id"`
- }
- type exampleResource struct {
- provider provider
- }
- func (r exampleResource) Create(ctx context.Context, req tfsdk.CreateResourceRequest, resp *tfsdk.CreateResourceResponse) {
- var data exampleResourceData
- diags := req.Config.Get(ctx, &data)
- resp.Diagnostics.Append(diags...)
- if resp.Diagnostics.HasError() {
- return
- }
-
-
-
-
-
-
-
-
-
- data.Id = types.String{Value: "example-id"}
-
-
-
- tflog.Trace(ctx, "created a resource")
- diags = resp.State.Set(ctx, &data)
- resp.Diagnostics.Append(diags...)
- }
- func (r exampleResource) Read(ctx context.Context, req tfsdk.ReadResourceRequest, resp *tfsdk.ReadResourceResponse) {
- var data exampleResourceData
- diags := req.State.Get(ctx, &data)
- resp.Diagnostics.Append(diags...)
- if resp.Diagnostics.HasError() {
- return
- }
-
-
-
-
-
-
-
- diags = resp.State.Set(ctx, &data)
- resp.Diagnostics.Append(diags...)
- }
- func (r exampleResource) Update(ctx context.Context, req tfsdk.UpdateResourceRequest, resp *tfsdk.UpdateResourceResponse) {
- var data exampleResourceData
- diags := req.Plan.Get(ctx, &data)
- resp.Diagnostics.Append(diags...)
- if resp.Diagnostics.HasError() {
- return
- }
-
-
-
-
-
-
-
- diags = resp.State.Set(ctx, &data)
- resp.Diagnostics.Append(diags...)
- }
- func (r exampleResource) Delete(ctx context.Context, req tfsdk.DeleteResourceRequest, resp *tfsdk.DeleteResourceResponse) {
- var data exampleResourceData
- diags := req.State.Get(ctx, &data)
- resp.Diagnostics.Append(diags...)
- if resp.Diagnostics.HasError() {
- return
- }
-
-
-
-
-
-
-
- }
- func (r exampleResource) ImportState(ctx context.Context, req tfsdk.ImportResourceStateRequest, resp *tfsdk.ImportResourceStateResponse) {
- tfsdk.ResourceImportStatePassthroughID(ctx, tftypes.NewAttributePath().WithAttributeName("id"), req, resp)
- }
|