func()

in internal/provider/provider.go [54:68]


func (p *devlakeProvider) Schema(_ context.Context, _ provider.SchemaRequest, resp *provider.SchemaResponse) {
	resp.Schema = schema.Schema{
		Attributes: map[string]schema.Attribute{
			"host": schema.StringAttribute{
				Optional:    true,
				Description: "URI for Devlake API. May also be provided via DEVLAKE_HOST environment variable.",
			},
			"token": schema.StringAttribute{
				Description: "Token for Devlake API. May also be provided via DEVLAKE_TOKEN environment variable.",
				Optional:    true,
				Sensitive:   true,
			},
		},
	}
}