Skip to content

Commit 69bad5a

Browse files
Add description field to mirroring resources. (#13260) (#21714)
[upstream:43d32dfbdcd93a251ba7812f2880004c710e6a4b] Signed-off-by: Modular Magician <magic-modules@google.com>
1 parent d6459e4 commit 69bad5a

4 files changed

+21
-0
lines changed

.changelog/13260.txt

+3
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
```release-note:enhancement
2+
networksecurity: added `description` field to `google_network_security_mirroring_deployment`, `google_network_security_mirroring_deployment_group`, `google_network_security_mirroring_endpoint_group` resources
3+
```

website/docs/r/network_security_mirroring_deployment.html.markdown

+6
Original file line numberDiff line numberDiff line change
@@ -103,6 +103,7 @@ resource "google_network_security_mirroring_deployment" "default" {
103103
location = "us-central1-a"
104104
forwarding_rule = google_compute_forwarding_rule.forwarding_rule.id
105105
mirroring_deployment_group = google_network_security_mirroring_deployment_group.deployment_group.id
106+
description = "some description"
106107
labels = {
107108
foo = "bar"
108109
}
@@ -145,6 +146,11 @@ The following arguments are supported:
145146
**Note**: This field is non-authoritative, and will only manage the labels present in your configuration.
146147
Please refer to the field `effective_labels` for all of the labels present on the resource.
147148

149+
* `description` -
150+
(Optional)
151+
User-provided description of the deployment.
152+
Used as additional context for the deployment.
153+
148154
* `project` - (Optional) The ID of the project in which the resource belongs.
149155
If it is not provided, the provider project is used.
150156

website/docs/r/network_security_mirroring_deployment_group.html.markdown

+6
Original file line numberDiff line numberDiff line change
@@ -55,6 +55,7 @@ resource "google_network_security_mirroring_deployment_group" "default" {
5555
mirroring_deployment_group_id = "example-dg"
5656
location = "global"
5757
network = google_compute_network.network.id
58+
description = "some description"
5859
labels = {
5960
foo = "bar"
6061
}
@@ -91,6 +92,11 @@ The following arguments are supported:
9192
**Note**: This field is non-authoritative, and will only manage the labels present in your configuration.
9293
Please refer to the field `effective_labels` for all of the labels present on the resource.
9394

95+
* `description` -
96+
(Optional)
97+
User-provided description of the deployment group.
98+
Used as additional context for the deployment group.
99+
94100
* `project` - (Optional) The ID of the project in which the resource belongs.
95101
If it is not provided, the provider project is used.
96102

website/docs/r/network_security_mirroring_endpoint_group.html.markdown

+6
Original file line numberDiff line numberDiff line change
@@ -63,6 +63,7 @@ resource "google_network_security_mirroring_endpoint_group" "default" {
6363
mirroring_endpoint_group_id = "example-eg"
6464
location = "global"
6565
mirroring_deployment_group = google_network_security_mirroring_deployment_group.deployment_group.id
66+
description = "some description"
6667
labels = {
6768
foo = "bar"
6869
}
@@ -99,6 +100,11 @@ The following arguments are supported:
99100
**Note**: This field is non-authoritative, and will only manage the labels present in your configuration.
100101
Please refer to the field `effective_labels` for all of the labels present on the resource.
101102

103+
* `description` -
104+
(Optional)
105+
User-provided description of the endpoint group.
106+
Used as additional context for the endpoint group.
107+
102108
* `project` - (Optional) The ID of the project in which the resource belongs.
103109
If it is not provided, the provider project is used.
104110

0 commit comments

Comments
 (0)