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
This is the output of a load balancer
resource "ibm_is_lb" "front" { name = "${local.name}-front" subnets = [ for subnet in ibm_is_subnet.front : subnet.id] type = "public" resource_group = local.resource_group } > ibm_is_lb.front { "hostname" = "d3520d84-us-south.lb.appdomain.cloud" "id" = "r006-d3520d84-06c3-4ae0-9bca-05040b579c50" "logging" = false "name" = "vpc3tier-front" "operating_status" = "online" "private_ips" = tolist([ "10.0.0.5", "10.0.0.6", ]) "profile" = "dynamic" "public_ips" = tolist([ "169.48.154.27", "52.116.130.9", ]) "resource_controller_url" = "https://cloud.ibm.com/vpc-ext/network/loadBalancers" "resource_group" = "b6503f25836d49029966ab5be7fe50b5" "resource_group_name" = "b6503f25836d49029966ab5be7fe50b5" "resource_name" = "vpc3tier-front" "security_group_supported" = true "security_groups" = toset([ "r006-109c2b0a-fe44-4e5d-be8b-f7e763c15ae7", ]) "status" = "active" "subnets" = toset([ "0717-dc0a0563-d0be-4b78-896d-fe91623ca9df", ]) "tags" = toset([]) "timeouts" = null /* object */ "type" = "public" }
In the docs https://registry.terraform.io/providers/IBM-Cloud/ibm/latest/docs/resources/is_lb
Doc states: profile - (Required, Forces new resource, String) The profile to use for this load balancer. Supported value is network-fixed.
profile - (Required, Forces new resource, String) The profile to use for this load balancer. Supported value is network-fixed.
dynamic
The text was updated successfully, but these errors were encountered:
I agree profile should not be required. Secondly, profile = "network-fixed" would create a network load balancer. I'll get the document updated.
profile = "network-fixed"
Sorry, something went wrong.
Are we good to close?
IDK, Where can I review the docs?
Please find here @powellquiring , are we good to close? thanks
No branches or pull requests
This is the output of a load balancer
In the docs https://registry.terraform.io/providers/IBM-Cloud/ibm/latest/docs/resources/is_lb
Doc states:
profile - (Required, Forces new resource, String) The profile to use for this load balancer. Supported value is network-fixed.
dynamic
not network-fixed, what does dynamic meanThe text was updated successfully, but these errors were encountered: