From 2b0a335797598bbdcdc69fe278d92dc08039faa5 Mon Sep 17 00:00:00 2001 From: Modular Magician Date: Wed, 5 Mar 2025 17:55:59 +0000 Subject: [PATCH] Add `description` field to mirroring resources. (#13260) [upstream:43d32dfbdcd93a251ba7812f2880004c710e6a4b] Signed-off-by: Modular Magician --- .changelog/13260.txt | 3 +++ .../r/network_security_mirroring_deployment.html.markdown | 6 ++++++ ...etwork_security_mirroring_deployment_group.html.markdown | 6 ++++++ .../network_security_mirroring_endpoint_group.html.markdown | 6 ++++++ 4 files changed, 21 insertions(+) create mode 100644 .changelog/13260.txt diff --git a/.changelog/13260.txt b/.changelog/13260.txt new file mode 100644 index 00000000000..cf9b148cf61 --- /dev/null +++ b/.changelog/13260.txt @@ -0,0 +1,3 @@ +```release-note:enhancement +networksecurity: added `description` field to `google_network_security_mirroring_deployment`, `google_network_security_mirroring_deployment_group`, `google_network_security_mirroring_endpoint_group` resources +``` \ No newline at end of file diff --git a/website/docs/r/network_security_mirroring_deployment.html.markdown b/website/docs/r/network_security_mirroring_deployment.html.markdown index ae24fef8d9a..397a71716de 100644 --- a/website/docs/r/network_security_mirroring_deployment.html.markdown +++ b/website/docs/r/network_security_mirroring_deployment.html.markdown @@ -103,6 +103,7 @@ resource "google_network_security_mirroring_deployment" "default" { location = "us-central1-a" forwarding_rule = google_compute_forwarding_rule.forwarding_rule.id mirroring_deployment_group = google_network_security_mirroring_deployment_group.deployment_group.id + description = "some description" labels = { foo = "bar" } @@ -145,6 +146,11 @@ The following arguments are supported: **Note**: This field is non-authoritative, and will only manage the labels present in your configuration. Please refer to the field `effective_labels` for all of the labels present on the resource. +* `description` - + (Optional) + User-provided description of the deployment. + Used as additional context for the deployment. + * `project` - (Optional) The ID of the project in which the resource belongs. If it is not provided, the provider project is used. diff --git a/website/docs/r/network_security_mirroring_deployment_group.html.markdown b/website/docs/r/network_security_mirroring_deployment_group.html.markdown index ca28900887f..4fef8907a23 100644 --- a/website/docs/r/network_security_mirroring_deployment_group.html.markdown +++ b/website/docs/r/network_security_mirroring_deployment_group.html.markdown @@ -55,6 +55,7 @@ resource "google_network_security_mirroring_deployment_group" "default" { mirroring_deployment_group_id = "example-dg" location = "global" network = google_compute_network.network.id + description = "some description" labels = { foo = "bar" } @@ -91,6 +92,11 @@ The following arguments are supported: **Note**: This field is non-authoritative, and will only manage the labels present in your configuration. Please refer to the field `effective_labels` for all of the labels present on the resource. +* `description` - + (Optional) + User-provided description of the deployment group. + Used as additional context for the deployment group. + * `project` - (Optional) The ID of the project in which the resource belongs. If it is not provided, the provider project is used. diff --git a/website/docs/r/network_security_mirroring_endpoint_group.html.markdown b/website/docs/r/network_security_mirroring_endpoint_group.html.markdown index a04fc612792..990dc8ee5b7 100644 --- a/website/docs/r/network_security_mirroring_endpoint_group.html.markdown +++ b/website/docs/r/network_security_mirroring_endpoint_group.html.markdown @@ -63,6 +63,7 @@ resource "google_network_security_mirroring_endpoint_group" "default" { mirroring_endpoint_group_id = "example-eg" location = "global" mirroring_deployment_group = google_network_security_mirroring_deployment_group.deployment_group.id + description = "some description" labels = { foo = "bar" } @@ -99,6 +100,11 @@ The following arguments are supported: **Note**: This field is non-authoritative, and will only manage the labels present in your configuration. Please refer to the field `effective_labels` for all of the labels present on the resource. +* `description` - + (Optional) + User-provided description of the endpoint group. + Used as additional context for the endpoint group. + * `project` - (Optional) The ID of the project in which the resource belongs. If it is not provided, the provider project is used.