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

feat(redis): added endpoints #1263

Merged
merged 47 commits into from
Jun 14, 2022
Merged

Conversation

Mia-Cross
Copy link
Contributor

@Mia-Cross Mia-Cross commented May 6, 2022

Currently debugging private networks endpoints that will be used this way:

resource "scaleway_vpc_private_network" "pn" {
    name = "private-network"
}

resource "scaleway_redis_cluster" "mycluster" {
  version      = "6.2.6"
  node_type    = "MDB-BETA-M"
  user_name    = "user"
  cluster_size = 1
  password     = "Passw0rd/with/Number"

  private_network {
    private_network_id          = "${scaleway_vpc_private_network.pn.id}"
    service_ips = [
      "10.16.1.0/5"
    ]
  }
}
  • Unrelated minor tests upgrade Added tests for overriding of the zone.

@remyleone remyleone linked an issue May 11, 2022 that may be closed by this pull request
@Mia-Cross Mia-Cross marked this pull request as draft June 10, 2022 09:44
@Mia-Cross Mia-Cross marked this pull request as ready for review June 13, 2022 14:22
@remyleone remyleone merged commit 262a71c into scaleway:master Jun 14, 2022
remyleone added a commit to remyleone/terraform-provider-scaleway that referenced this pull request Jun 17, 2022
Co-authored-by: jaime Bernabe <[email protected]>
Co-authored-by: Jules Casteran <[email protected]>
Co-authored-by: Rémy Léone <[email protected]>
@remyleone remyleone added the redis Managed Redis issues, bugs and feature requests label Jul 28, 2022
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
redis Managed Redis issues, bugs and feature requests
Projects
None yet
Development

Successfully merging this pull request may close these issues.

Add support for endpoint in redis cluster
5 participants