Skip to content

Commit

Permalink
feat: add url_map as output (#203)
Browse files Browse the repository at this point in the history
* add url_map as output

* add new line to outputs

* add new line to outputs

* add new line to output

* add new line to output
  • Loading branch information
denissimonovski authored Aug 23, 2021
1 parent 6cc618e commit 2ea30e4
Show file tree
Hide file tree
Showing 7 changed files with 23 additions and 0 deletions.
1 change: 1 addition & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -149,6 +149,7 @@ Current version is 3.0. Upgrade guides:
| http\_proxy | The HTTP proxy used by this module. |
| https\_proxy | The HTTPS proxy used by this module. |
| ipv6\_enabled | Whether IPv6 configuration is enabled on this load-balancer |
| url\_map | The default URL map used by this module. |

<!-- END OF PRE-COMMIT-TERRAFORM DOCS HOOK -->

Expand Down
5 changes: 5 additions & 0 deletions autogen/outputs.tf.tmpl
Original file line number Diff line number Diff line change
Expand Up @@ -44,3 +44,8 @@ output "https_proxy" {
description = "The HTTPS proxy used by this module."
value = google_compute_target_https_proxy.default[*].self_link
}

output "url_map" {
description = "The default URL map used by this module."
value = google_compute_url_map.default[*].self_link
}
1 change: 1 addition & 0 deletions modules/dynamic_backends/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -142,6 +142,7 @@ Current version is 3.0. Upgrade guides:
| http\_proxy | The HTTP proxy used by this module. |
| https\_proxy | The HTTPS proxy used by this module. |
| ipv6\_enabled | Whether IPv6 configuration is enabled on this load-balancer |
| url\_map | The default URL map used by this module. |

<!-- END OF PRE-COMMIT-TERRAFORM DOCS HOOK -->

Expand Down
5 changes: 5 additions & 0 deletions modules/dynamic_backends/outputs.tf
Original file line number Diff line number Diff line change
Expand Up @@ -44,3 +44,8 @@ output "https_proxy" {
description = "The HTTPS proxy used by this module."
value = google_compute_target_https_proxy.default[*].self_link
}

output "url_map" {
description = "The default URL map used by this module."
value = google_compute_url_map.default[*].self_link
}
1 change: 1 addition & 0 deletions modules/serverless_negs/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -104,6 +104,7 @@ Current version is 3.0. Upgrade guides:
| http\_proxy | The HTTP proxy used by this module. |
| https\_proxy | The HTTPS proxy used by this module. |
| ipv6\_enabled | Whether IPv6 configuration is enabled on this load-balancer |
| url\_map | The default URL map used by this module. |

<!-- END OF PRE-COMMIT-TERRAFORM DOCS HOOK -->

Expand Down
5 changes: 5 additions & 0 deletions modules/serverless_negs/outputs.tf
Original file line number Diff line number Diff line change
Expand Up @@ -44,3 +44,8 @@ output "https_proxy" {
description = "The HTTPS proxy used by this module."
value = google_compute_target_https_proxy.default[*].self_link
}

output "url_map" {
description = "The default URL map used by this module."
value = google_compute_url_map.default[*].self_link
}
5 changes: 5 additions & 0 deletions outputs.tf
Original file line number Diff line number Diff line change
Expand Up @@ -44,3 +44,8 @@ output "https_proxy" {
description = "The HTTPS proxy used by this module."
value = google_compute_target_https_proxy.default[*].self_link
}

output "url_map" {
description = "The default URL map used by this module."
value = google_compute_url_map.default[*].self_link
}

0 comments on commit 2ea30e4

Please sign in to comment.