We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
Terraform v1.9.7 on darwin_arm64
version = 2.29.1
linode_nodebalancer_config doc says region is required when it is not
linode_nodebalancer_config
region
resource "linode_nodebalancer_config" "foofig" { region = var.region nodebalancer_id = linode_nodebalancer.foobar.id port = 8088 protocol = "http" check = "http" check_path = "/foo" check_attempts = 3 check_timeout = 30 stickiness = "http_cookie" algorithm = "source" }
Terraform Run Error:
No response
region should have been an acceptable argument in resource linode_nodebalancer_config
Having region argument in resource linode_nodebalancer_config threw an error.
main.tf
resource "linode_nodebalancer" "foobar" { label = "mynodebalancer" region = "us-east" client_conn_throttle = 20 } resource "linode_nodebalancer_config" "foofig" { region = var.region nodebalancer_id = linode_nodebalancer.foobar.id port = 8088 protocol = "http" check = "http" check_path = "/foo" check_attempts = 3 check_timeout = 30 stickiness = "http_cookie" algorithm = "source" }
The text was updated successfully, but these errors were encountered:
linode#1643 Update nodebalancer_config.md
aadab24
Fix issue linode#1643 - region is not a required argument
Made a PR to update the doc
Sorry, something went wrong.
#1643 doc: Remove region attribute from the doc for NodeBalancer Co…
3530eda
…nfig (#1644)
No branches or pull requests
Terraform Version
Terraform v1.9.7 on darwin_arm64
Linode Provider Version
version = 2.29.1
Effected Terraform Resources
linode_nodebalancer_config
doc saysregion
is required when it is notTerraform Config Files
Debug Output
Terraform Run Error:
Panic Output
No response
Expected Behavior
region
should have been an acceptable argument in resourcelinode_nodebalancer_config
Actual Behavior
Having
region
argument in resourcelinode_nodebalancer_config
threw an error.Steps to Reproduce
main.tf
:The text was updated successfully, but these errors were encountered: