-
Notifications
You must be signed in to change notification settings - Fork 1.8k
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
Forwarding rule network field supports name in addition of self_link #487
Conversation
TF_ACC=1 go test ./google -v -run TestAccComputeForwardingRule_ -timeout 120m
=== RUN TestAccComputeForwardingRule_importBasic
--- PASS: TestAccComputeForwardingRule_importBasic (46.21s)
=== RUN TestAccComputeForwardingRule_basic
--- PASS: TestAccComputeForwardingRule_basic (45.77s)
=== RUN TestAccComputeForwardingRule_singlePort
--- PASS: TestAccComputeForwardingRule_singlePort (47.11s)
=== RUN TestAccComputeForwardingRule_ip
--- PASS: TestAccComputeForwardingRule_ip (46.00s)
=== RUN TestAccComputeForwardingRule_internalLoadBalancing
--- PASS: TestAccComputeForwardingRule_internalLoadBalancing (96.70s)
PASS |
resource "google_compute_forwarding_rule" "foobar" { | ||
description = "Resource created for Terraform acceptance testing" | ||
name = "%s" | ||
load_balancing_scheme = "INTERNAL" | ||
backend_service = "${google_compute_region_backend_service.foobar-bs.self_link}" | ||
ports = ["80"] | ||
network = "${google_compute_network.foobar.name}" |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
minor: indention should match
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Done
…ashicorp#487) * Forwarding rule network field supports name in addition of self_link * Update documentation
…ashicorp#487) * Forwarding rule network field supports name in addition of self_link * Update documentation
…ashicorp#487) * Forwarding rule network field supports name in addition of self_link * Update documentation
Only set remove_default_node_pool for import if false - fixes TF tests
I'm going to lock this issue because it has been closed for 30 days ⏳. This helps our maintainers find and focus on the active issues. If you feel this issue should be reopened, we encourage creating a new issue linking back to this one for added context. If you feel I made an error 🤖 🙉 , please reach out to my human friends 👉 [email protected]. Thanks! |
Fixes one resource for #431.