resource "yandex_function" "myfunction" {
name = "myfunction"
loggroup_id = yandex_logging_group.wlbot-logs-group.id
...
}
After terraform apply get error:
Can't configure a value for "loggroup_id": its value will be decided automatically based on the result of applying this configuration.
https://registry.tfpla.net/providers/yandex-cloud/yandex/latest/docs/resources/function#loggroup_id
resource "yandex_function" "myfunction" { name = "myfunction" loggroup_id = yandex_logging_group.wlbot-logs-group.id ... } After terraform apply get error: Can't configure a value for "loggroup_id": its value will be decided automatically based on the result of applying this configuration.