Closed romcheck closed 3 years ago
Hi @romcheck
Is this a backend you already have in place and is configured with your terraform configuration?
Paul
Hi @romcheck
Is this a backend you already have in place and is configured with your terraform configuration?
Paul
Hi Paul
Absolutely. It has configured and successfully working:
terraform {
required_providers {
yandex = {
source = "yandex-cloud/yandex"
version = "0.61.0"
}
}
backend "s3" {
endpoint = "storage.yandexcloud.net"
bucket = "fans-pulumi-state"
key = "postgresql"
skip_region_validation = true
skip_credentials_validation = true
}
}
ok, so the skip_*
are the missing piece here - we must support those to ensure we are not assuming it's an S3 backend.
I will get those added this iteration
Sorry about that!
Paul
I try to use RemoteStateReference with backendType: s3
S3 provider is Yandex Cloud
Steps to reproduce
Expected: successfully created resource
Actual:
I use credential envs with verified values (working successfully with other tools):
Also tried to use them directly as corresponding properties with no luck.