terraform-provider-yandex icon indicating copy to clipboard operation
terraform-provider-yandex copied to clipboard

Terraform Yandex provider

Results 201 terraform-provider-yandex issues
Sort by recently updated
recently updated
newest added

VPC IP address id looks like this: `b0c0rjqc7l1lkja20r4v`. There is no way to get that string from web console.

Currently i have workaround like this. ```bash export YC_TOKEN=$(yc iam create-token) terraform $@ ``` I'd like to reduce boilerplate for small projects like `remote-state` where you actually don't care about...

When importing a `yandex_kubernetes_cluster` resource, there are no fields about the master subnet configuration. Therefore, if you change the resource manually, drift will occur. ```bash terraform import yandex_kubernetes_cluster.cluster_resource_name ``` >...

Add supported verions for mdb_postgresql_cluster: 15, 15-1с, 16).

I've tried use version = "16" postgresql_config = { max_connections = "400" enable_parallel_hash = "true" autovacuum_vacuum_scale_factor = "0.02" } for yandex_mdb_postgresql_cluster but it isn't applied to the cluster it isn't...

``` resource "yandex_cdn_resource" "cdn" { cname = "example.com" active = true origin_protocol = "https" origin_group_id = yandex_cdn_origin_group.agw.id ssl_certificate { type = "certificate_manager" certificate_manager_id = yandex_cm_certificate.ssl_cert.id } options { gzip_on =...

bug
cdn

Current configuration ``` resource "yandex_storage_bucket" "default" { bucket = "test-bucket" grant { id = yandex_iam_service_account.default["a"].id permissions = ["READ"] type = "CanonicalUser" } } ``` After new grant was added ```...

Hello, ``` │ Error: server-request-id = 4810be22-7190-4bca-8326-b944aaace0b0 client-request-id = 9f178d54-6f14-416a-bf2f-ca95f4a50fb5 client-trace-id = 4be906a5-0a84-427b-a4bf-6c4830a66b74 rpc error: code = NotFound desc = Certificate fpql45qet188puipge8n was deleted │ │ with yandex_cm_certificate.cert, │ on...