def validate()

in terranova/binds.py [0:0]


    def validate(self) -> None:
        """
        Check whether the configuration is valid.

        Raises:
            InvalidResourcesError: if the resources configuration is invalid.
        """
        try:
            self._exec("validate", _inherit=True)
        except ErrorReturnCode as err:
            raise InvalidResourcesError(
                cause="the syntax is probably incorrect.",
                resolution="https://developer.hashicorp.com/terraform/language/syntax/configuration",
            ) from err