func()

in internal/provider/provider.go [47:74]


func (p *CISProvider) Schema(ctx context.Context, req provider.SchemaRequest, resp *provider.SchemaResponse) {
	resp.Schema = schema.Schema{
		Attributes: map[string]schema.Attribute{
			"auth0_endpoint": schema.StringAttribute{
				Description:         "Auth0 endpoint",
				MarkdownDescription: "Auth0 endpoint",
				Optional:            true,
			},
			"auth0_client_id": schema.StringAttribute{
				Description:         "Auth0 client ID",
				MarkdownDescription: "Auth0 client ID",
				Optional:            true,
				Sensitive:           true,
			},
			"auth0_client_secret": schema.StringAttribute{
				Description:         "Auth0 client secret",
				MarkdownDescription: "Auth0 client secret",
				Optional:            true,
				Sensitive:           true,
			},
			"person_endpoint": schema.StringAttribute{
				Description:         "CIS person endpoint",
				MarkdownDescription: "CIS person endpoint",
				Optional:            true,
			},
		},
	}
}