Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add description field to mirroring resources. #21714

Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 3 additions & 0 deletions .changelog/13260.txt
Original file line number Diff line number Diff line change
@@ -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
```
Original file line number Diff line number Diff line change
Expand Up @@ -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"
}
Expand Down Expand Up @@ -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.

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -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"
}
Expand Down Expand Up @@ -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.

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -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"
}
Expand Down Expand Up @@ -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.

Expand Down