terraform-provider-stackitp.../docs/data-sources/observability_scrapeconfig.md
Ruben Hönle 37754e865d
feat(ci): ensure docs are up-to-date on PRs (#767)
relates to STACKITTPR-153
2025-04-08 10:24:19 +02:00

2.3 KiB

page_title subcategory description
stackit_observability_scrapeconfig Data Source - stackit Observability scrape config data source schema. Must have a region specified in the provider configuration.

stackit_observability_scrapeconfig (Data Source)

Observability scrape config data source schema. Must have a region specified in the provider configuration.

Example Usage

data "stackit_observability_scrapeconfig" "example" {
  project_id  = "xxxxxxxx-xxxx-xxxx-xxxx-xxxxxxxxxxxx"
  instance_id = "xxxxxxxx-xxxx-xxxx-xxxx-xxxxxxxxxxxx"
  name        = "example"
}

Schema

Required

  • instance_id (String) Observability instance ID to which the scraping job is associated.
  • name (String) Specifies the name of the scraping job
  • project_id (String) STACKIT project ID to which the scraping job is associated.

Read-Only

  • basic_auth (Attributes) A basic authentication block. (see below for nested schema)
  • id (String) Terraform's internal data source. ID. It is structured as "project_id,instance_id,name".
  • metrics_path (String) Specifies the job scraping url path.
  • saml2 (Attributes) A SAML2 configuration block. (see below for nested schema)
  • sample_limit (Number) Specifies the scrape sample limit.
  • scheme (String) Specifies the http scheme.
  • scrape_interval (String) Specifies the scrape interval as duration string.
  • scrape_timeout (String) Specifies the scrape timeout as duration string.
  • targets (Attributes List) The targets list (specified by the static config). (see below for nested schema)

Nested Schema for basic_auth

Read-Only:

  • password (String, Sensitive) Specifies basic auth password.
  • username (String) Specifies basic auth username.

Nested Schema for saml2

Read-Only:

  • enable_url_parameters (Boolean) Specifies if URL parameters are enabled

Nested Schema for targets

Read-Only:

  • labels (Map of String) Specifies labels.
  • urls (List of String) Specifies target URLs.