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

lb_external module should support network_tier #58

Open
jochristian opened this issue Jan 27, 2025 · 0 comments · May be fixed by #59
Open

lb_external module should support network_tier #58

jochristian opened this issue Jan 27, 2025 · 0 comments · May be fixed by #59
Labels
enhancement New feature or request

Comments

@jochristian
Copy link

Is your feature request related to a problem?

Seems like the lb_external module is "half-finished" on network_tier.
The variable exists but it's not added to main.tf

variable "network_tier" {
description = "The networking tier used for configuring this address. If this field is not specified, it is assumed to be PREMIUM. Possible values are PREMIUM and STANDARD."

Describe the solution you'd like

Add this to main.tf. Under google_compute_forwarding_rule

Create forwarding rule for each specified rule

resource "google_compute_forwarding_rule" "rule" {
for_each = var.rules

name = each.key
project = var.project
region = local.region
network_tier = var.network_tier <<<-- This should be added.

Describe alternatives you've considered.

No response

Additional context

No response

@jochristian jochristian added the enhancement New feature or request label Jan 27, 2025
@jochristian jochristian changed the title lb_external module need to support network_tier lb_external module should support network_tier Jan 27, 2025
@jochristian jochristian linked a pull request Jan 29, 2025 that will close this issue
4 tasks
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
enhancement New feature or request
Projects
None yet
Development

Successfully merging a pull request may close this issue.

1 participant