From 4ad70a22c7b2291cf236581fb3c8df93fc85a46a Mon Sep 17 00:00:00 2001 From: Tomasz Magulski Date: Mon, 27 Oct 2025 14:26:42 +0100 Subject: [PATCH] Add missing comma in docs between Monitors and Security Monitoring Rules --- datadog/fwprovider/framework_provider.go | 4 ++-- datadog/provider.go | 4 ++-- docs/index.md | 4 ++-- 3 files changed, 6 insertions(+), 6 deletions(-) diff --git a/datadog/fwprovider/framework_provider.go b/datadog/fwprovider/framework_provider.go index e424d3a940..967c8ee83f 100644 --- a/datadog/fwprovider/framework_provider.go +++ b/datadog/fwprovider/framework_provider.go @@ -302,13 +302,13 @@ func (p *FrameworkProvider) Schema(_ context.Context, _ provider.SchemaRequest, Validators: []validator.List{ listvalidator.SizeAtMost(1), }, - Description: "[Experimental - Logs Pipelines, Monitors Security Monitoring Rules, and Service Level Objectives only] Configuration block containing settings to apply default resource tags across all resources.", + Description: "[Experimental - Logs Pipelines, Monitors, Security Monitoring Rules, and Service Level Objectives only] Configuration block containing settings to apply default resource tags across all resources.", NestedObject: schema.NestedBlockObject{ Attributes: map[string]schema.Attribute{ "tags": schema.MapAttribute{ ElementType: types.StringType, Optional: true, - Description: "[Experimental - Logs Pipelines, Monitors Security Monitoring Rules, and Service Level Objectives only] Resource tags to be applied by default across all resources.", + Description: "[Experimental - Logs Pipelines, Monitors, Security Monitoring Rules, and Service Level Objectives only] Resource tags to be applied by default across all resources.", }, }, }, diff --git a/datadog/provider.go b/datadog/provider.go index 1a645a0a4b..4bc9cd13bd 100644 --- a/datadog/provider.go +++ b/datadog/provider.go @@ -192,14 +192,14 @@ func Provider() *schema.Provider { Type: schema.TypeList, Optional: true, MaxItems: 1, - Description: "[Experimental - Logs Pipelines, Monitors Security Monitoring Rules, and Service Level Objectives only] Configuration block containing settings to apply default resource tags across all resources.", + Description: "[Experimental - Logs Pipelines, Monitors, Security Monitoring Rules, and Service Level Objectives only] Configuration block containing settings to apply default resource tags across all resources.", Elem: &schema.Resource{ Schema: map[string]*schema.Schema{ "tags": { Type: schema.TypeMap, Optional: true, Elem: &schema.Schema{Type: schema.TypeString}, - Description: "[Experimental - Logs Pipelines, Monitors Security Monitoring Rules, and Service Level Objectives only] Resource tags to be applied by default across all resources.", + Description: "[Experimental - Logs Pipelines, Monitors, Security Monitoring Rules, and Service Level Objectives only] Resource tags to be applied by default across all resources.", }, }, }, diff --git a/docs/index.md b/docs/index.md index d8bca80d46..cd095287a3 100644 --- a/docs/index.md +++ b/docs/index.md @@ -57,7 +57,7 @@ provider "datadog" { - `aws_session_token` (String, Sensitive) The AWS session token; used for cloud-provider-based authentication. This can also be set using the `AWS_SESSION_TOKEN` environment variable. Required when using `cloud_provider_type` set to `aws` and using temporary credentials. - `cloud_provider_region` (String) The cloud provider region specifier; used for cloud-provider-based authentication. For example, `us-east-1` for AWS. - `cloud_provider_type` (String) Specifies the cloud provider used for cloud-provider-based authentication, enabling keyless access without API or app keys. Only [`aws`] is supported. This feature is in Preview. If you'd like to enable it for your organization, contact [support](https://docs.datadoghq.com/help/). -- `default_tags` (Block List, Max: 1) [Experimental - Logs Pipelines, Monitors Security Monitoring Rules, and Service Level Objectives only] Configuration block containing settings to apply default resource tags across all resources. (see [below for nested schema](#nestedblock--default_tags)) +- `default_tags` (Block List, Max: 1) [Experimental - Logs Pipelines, Monitors, Security Monitoring Rules, and Service Level Objectives only] Configuration block containing settings to apply default resource tags across all resources. (see [below for nested schema](#nestedblock--default_tags)) - `http_client_retry_backoff_base` (Number) The HTTP request retry back off base. Defaults to 2. - `http_client_retry_backoff_multiplier` (Number) The HTTP request retry back off multiplier. Defaults to 2. - `http_client_retry_enabled` (String) Enables request retries on HTTP status codes 429 and 5xx. Valid values are [`true`, `false`]. Defaults to `true`. @@ -71,4 +71,4 @@ provider "datadog" { Optional: -- `tags` (Map of String) [Experimental - Logs Pipelines, Monitors Security Monitoring Rules, and Service Level Objectives only] Resource tags to be applied by default across all resources. +- `tags` (Map of String) [Experimental - Logs Pipelines, Monitors, Security Monitoring Rules, and Service Level Objectives only] Resource tags to be applied by default across all resources.