Reputation: 153
I'm using the terraform-plugin-framework
.
As a contrived example, say I have these resources:
resource "provider_resource" "thing" {
do_build = true
}
resource "provider_resource_builder" "my_builder" {
build = ["thing"]
}
Is it possible for my_builder
to validate provider_resource.thing.do_build
is true
, before creating it ?
Upvotes: 1
Views: 49