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

[New Resource]: cloudavenue_alb_pool #220

Closed
gaetanars opened this issue Mar 24, 2023 · 0 comments · Fixed by #246
Closed

[New Resource]: cloudavenue_alb_pool #220

gaetanars opened this issue Mar 24, 2023 · 0 comments · Fixed by #246
Assignees

Comments

@gaetanars
Copy link
Contributor

Description

Provides a resource to manage Advanced Load Balancer Pools on Cloud Avenue. Pools maintain the list of servers assigned to them and perform health monitoring, load balancing, persistence. A pool may only be used or referenced by only one virtual service at a time.

Requested Resource(s) and/or Data Source(s)

cloudavenue_alb_pool

Potential Terraform Configuration

resource "cloudavenue_alb_pool" "first-pool" {

  name            = "configured-pool"
  edge_gateway_id = cloudavenue_edgegateway.test.id

  algorithm                  = "LEAST_LOAD"
  default_port               = 9000
  graceful_timeout_period    = "0"
  passive_monitoring_enabled = false

  health_monitor = {
    type = "PING"
  }

  persistence_profile = {
    type = "CLIENT_IP"
  }

  member = {
    enabled    = false
    ip_address = "192.168.1.1"
    port       = 8000
    ratio      = 2
  }

  member = {
    ip_address = "192.168.1.2"
    ratio      = 4
  }
}

References

https://registry.terraform.io/providers/vmware/vcd/latest/docs/resources/nsxt_alb_pool

Would you like to implement a fix?

None

@gaetanars gaetanars self-assigned this Mar 29, 2023
@gaetanars gaetanars linked a pull request Mar 30, 2023 that will close this issue
3 tasks
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Projects
None yet
Development

Successfully merging a pull request may close this issue.

2 participants