From c71c83578ff1447c62ea631861a267c20a28fc9c Mon Sep 17 00:00:00 2001 From: Talina Shrotriya <5362897+Talina06@users.noreply.github.com> Date: Tue, 5 Dec 2023 14:35:57 -0800 Subject: [PATCH] Update acceptance tests provider name --- README.md | 6 +++--- internal/testing/project_config.go | 2 +- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/README.md b/README.md index 342068fc..883f9857 100644 --- a/README.md +++ b/README.md @@ -117,13 +117,13 @@ Note: You will need to provide both the url of the capella host as well as your ```terraform terraform { required_providers { - capella = { - source = "hashicorp.com/couchabasecloud/capella" + couchbase-capella = { + source = "hashicorp.com/couchabasecloud/couchbase-capella" } } } -provider "capella" { +provider "couchbase-capella" { host = "the host url of couchbase cloud" authentication_token = "capella authentication token" } diff --git a/internal/testing/project_config.go b/internal/testing/project_config.go index 1fdee326..37b04d22 100644 --- a/internal/testing/project_config.go +++ b/internal/testing/project_config.go @@ -13,7 +13,7 @@ variable "auth_token" { description = "Authentication API Key" sensitive = true } -provider "capella" { +provider "couchbase-capella" { host = var.host authentication_token = var.auth_token }