splunk / terraform-provider-splunk

Terraform Provider for Splunk
Mozilla Public License 2.0
102 stars 75 forks source link

Error finding splunk provider in Oracle Cloud #63

Open vrich-100 opened 3 years ago

vrich-100 commented 3 years ago

Changed the provider lines to get past the splunk provider error: terraform { required_providers { splunk = { source = "registry.terraform.io/splunk/splunk" } } }

anushjay commented 3 years ago

@vrich-100 What version of terraform are you using? May be the required_version key is required.

terraform {
  required_providers {
    splunk = {
      source  = "splunk/splunk"
      version = "1.4.3"
    }
  }
}
vrich-100 commented 3 years ago