user219820
user219820

Reputation: 153

is it possible to validate multiple resources?

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

Answers (0)

Related Questions