Skip to content

Commit 0b8ed3c

Browse files
Add description field to intercept resources. (#13262) (#21711)
[upstream:c721c74c72110cc330eef08932a4011e29beb0ca] Signed-off-by: Modular Magician <magic-modules@google.com>
1 parent 330245e commit 0b8ed3c

4 files changed

+21
-0
lines changed

.changelog/13262.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_intercept_deployment`, `google_network_security_intercept_deployment_group`, `google_network_security_intercept_endpoint_group` resources
3+
```

website/docs/r/network_security_intercept_deployment.html.markdown

+6
Original file line numberDiff line numberDiff line change
@@ -97,6 +97,7 @@ resource "google_network_security_intercept_deployment" "default" {
9797
location = "us-central1-a"
9898
forwarding_rule = google_compute_forwarding_rule.forwarding_rule.id
9999
intercept_deployment_group = google_network_security_intercept_deployment_group.deployment_group.id
100+
description = "some description"
100101
labels = {
101102
foo = "bar"
102103
}
@@ -139,6 +140,11 @@ The following arguments are supported:
139140
**Note**: This field is non-authoritative, and will only manage the labels present in your configuration.
140141
Please refer to the field `effective_labels` for all of the labels present on the resource.
141142

143+
* `description` -
144+
(Optional)
145+
User-provided description of the deployment.
146+
Used as additional context for the deployment.
147+
142148
* `project` - (Optional) The ID of the project in which the resource belongs.
143149
If it is not provided, the provider project is used.
144150

website/docs/r/network_security_intercept_deployment_group.html.markdown

+6
Original file line numberDiff line numberDiff line change
@@ -50,6 +50,7 @@ resource "google_network_security_intercept_deployment_group" "default" {
5050
intercept_deployment_group_id = "example-dg"
5151
location = "global"
5252
network = google_compute_network.network.id
53+
description = "some description"
5354
labels = {
5455
foo = "bar"
5556
}
@@ -86,6 +87,11 @@ The following arguments are supported:
8687
**Note**: This field is non-authoritative, and will only manage the labels present in your configuration.
8788
Please refer to the field `effective_labels` for all of the labels present on the resource.
8889

90+
* `description` -
91+
(Optional)
92+
User-provided description of the deployment group.
93+
Used as additional context for the deployment group.
94+
8995
* `project` - (Optional) The ID of the project in which the resource belongs.
9096
If it is not provided, the provider project is used.
9197

website/docs/r/network_security_intercept_endpoint_group.html.markdown

+6
Original file line numberDiff line numberDiff line change
@@ -58,6 +58,7 @@ resource "google_network_security_intercept_endpoint_group" "default" {
5858
intercept_endpoint_group_id = "example-eg"
5959
location = "global"
6060
intercept_deployment_group = google_network_security_intercept_deployment_group.deployment_group.id
61+
description = "some description"
6162
labels = {
6263
foo = "bar"
6364
}
@@ -94,6 +95,11 @@ The following arguments are supported:
9495
**Note**: This field is non-authoritative, and will only manage the labels present in your configuration.
9596
Please refer to the field `effective_labels` for all of the labels present on the resource.
9697

98+
* `description` -
99+
(Optional)
100+
User-provided description of the endpoint group.
101+
Used as additional context for the endpoint group.
102+
97103
* `project` - (Optional) The ID of the project in which the resource belongs.
98104
If it is not provided, the provider project is used.
99105

0 commit comments

Comments
 (0)