The provider mypurecloud/genesyscloud doesn't support resource type "genesyscloud_flow"

In the official documentation there is resource called "genesyscloud_flow".
genesyscloud_flow | Resources | MyPureCloud/genesyscloud | Terraform | Terraform Registry

But the terminal shows me the following error...

1 Like

Hi @Artur_Dishunts

What version of the provider are you using?

Version of Terraform is 1.8

You're using Terraform 1.8 or v1.8.0 of mypurecloud/genesyscloud ?

If you haven't already done so, I'd recommend upgrading to the latest version of our provider - v1.36.1

terraform {
  required_providers {
    genesyscloud = {
      source  = "mypurecloud/genesyscloud"
      version = "1.36.1"
    }
  }
}

You'll need to run terraform init -upgrade

1 Like

Thanks! I appreciate it.

1 Like