Aurelie Vache

Results 61 comments of Aurelie Vache
trafficstars

If you want to select the first element you can also use the `one(...)` method like this: ``` private_network_id = one(ovh_cloud_project_network_private.network.regions_attributes[*].openstackid) ```

Ot you can simply use tolist() function and the first index: ``` private_network_id = tolist(ovh_cloud_project_network_private.network.regions_attributes[*].openstackid)[0] ```

Yes, I added the tip and also several examples in the documentation. It will be released in the v0.22.0 :-).

Hi, thanks for your PR :). I think a solution can be to call the `/cloud/project//vrack` API in order to get the vrack associated to your serviceName: ![image](https://user-images.githubusercontent.com/2543381/181014793-649548cf-5f08-46e6-9fcf-dc22dbec876e.png) Moreover, in...

Hi, thanks for your PR :). Is it possible to fix your acceptance test in order to be able to execute all of them, without any order. For example, in...

review in progress one modification to do in the doc please: ``` resource "ovh_cloud_project_database" "mongodb" { service_name = var.openstack_infos.project_id ``` ``` resource "ovh_cloud_project_database" "mongodb" { service_name = "xxxxxxxxxxxxxxxxxxxxxxxxxxxxxx" ``` :)

Thanks, it's OK for me :)

Hi @madmatah, you can comment on the [Allow API server configuration change](https://github.com/ovh/public-cloud-roadmap/issues/70) request on our public cloud roadmap github with your need and precise that you want to for terraform...

We have the same needs and same issues. We use a AWS user without policies & rights, we ask to this user to assume a role. It's working corerctly with...

Hi, thanks of all, we're happy that you use our Terraform provider. We created a tutorial about Kubernetes cluster and node pool creation through Terraform: [https://docs.ovh.com/gb/en/kubernetes/creating-a-cluster-through-terraform/](https://docs.ovh.com/gb/en/kubernetes/creating-a-cluster-through-terraform/) you can take a...