123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105 |
- package provider
- import (
- "context"
- "fmt"
- "net/http"
- "github.com/hashicorp/terraform-plugin-framework/datasource"
- "github.com/hashicorp/terraform-plugin-framework/datasource/schema"
- "github.com/hashicorp/terraform-plugin-framework/types"
- "github.com/hashicorp/terraform-plugin-log/tflog"
- )
- var _ datasource.DataSource = &ExampleDataSource{}
- func NewExampleDataSource() datasource.DataSource {
- return &ExampleDataSource{}
- }
- type ExampleDataSource struct {
- client *http.Client
- }
- type ExampleDataSourceModel struct {
- ConfigurableAttribute types.String `tfsdk:"configurable_attribute"`
- Id types.String `tfsdk:"id"`
- }
- func (d *ExampleDataSource) Metadata(ctx context.Context, req datasource.MetadataRequest, resp *datasource.MetadataResponse) {
- resp.TypeName = req.ProviderTypeName + "_example"
- }
- func (d *ExampleDataSource) Schema(ctx context.Context, req datasource.SchemaRequest, resp *datasource.SchemaResponse) {
- resp.Schema = schema.Schema{
-
- MarkdownDescription: "Example data source",
- Attributes: map[string]schema.Attribute{
- "configurable_attribute": schema.StringAttribute{
- MarkdownDescription: "Example configurable attribute",
- Optional: true,
- },
- "id": schema.StringAttribute{
- MarkdownDescription: "Example identifier",
- Computed: true,
- },
- },
- }
- }
- func (d *ExampleDataSource) Configure(ctx context.Context, req datasource.ConfigureRequest, resp *datasource.ConfigureResponse) {
-
- if req.ProviderData == nil {
- return
- }
- client, ok := req.ProviderData.(*http.Client)
- if !ok {
- resp.Diagnostics.AddError(
- "Unexpected Data Source Configure Type",
- fmt.Sprintf("Expected *http.Client, got: %T. Please report this issue to the provider developers.", req.ProviderData),
- )
- return
- }
- d.client = client
- }
- func (d *ExampleDataSource) Read(ctx context.Context, req datasource.ReadRequest, resp *datasource.ReadResponse) {
- var data ExampleDataSourceModel
-
- resp.Diagnostics.Append(req.Config.Get(ctx, &data)...)
- if resp.Diagnostics.HasError() {
- return
- }
-
-
-
-
-
-
-
-
-
- data.Id = types.StringValue("example-id")
-
-
- tflog.Trace(ctx, "read a data source")
-
- resp.Diagnostics.Append(resp.State.Set(ctx, &data)...)
- }
|