terraform-provider-ucloud
terraform-provider-ucloud copied to clipboard
Terraform is an awesome tool to implement Infrastructure as Code and GitOps
update docs in https://registry.terraform.io/providers/ucloud/ucloud/latest/docs/resources/lb_listener
I hit the following issue when applying vpc resource in https://github.com/ucloud/terraform-provider-ucloud/tree/master/examples/vpc. ``` ➜ vpc git:(master) t apply -auto-approve Terraform used the selected providers to generate the following execution plan. Resource...
While creating an `ucloud_uk8s_node` resource, if I don't specify the `boot_disk_type`, the provider will choose `cloud_ssd`, as the documentation says. But actually I received this error message: ``` Error: error...
https://docs.ucloud.cn/terraform/specification/db_instance It only tells instance types of MySQL and I couldn't find any type specifications for PostgreSQL...
I've run `terraform destroy` successfully, but the resources like subnet and eip etc still exist.
It is not recommended that hard coded the instance-type in the IaC code. I always filter instance type by cpu and memory (aws, alicloud or tencentcloud) by datasource which is...
The expected demo of tag just looks like: ``` resource "ucloud_instance" "web" { .... tags = { createby = terraform service = web team = backend owner = zhangsan }...