Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Shared Flow creates a Proxy with the same name additionally #49

Open
pako-grape opened this issue May 13, 2022 · 0 comments
Open

Shared Flow creates a Proxy with the same name additionally #49

pako-grape opened this issue May 13, 2022 · 0 comments

Comments

@pako-grape
Copy link

Hello,

When creating apigee_shared_flow resource, there are two created in fact - a shared flow and a proxy.

Steps to reproduce:

  1. Create an empty sharedflow and download revision as a zip file (save it as test_sharedflow.zip)
  2. Apply terraform snippet
terraform {
  required_version = "=1.1.8"

  required_providers {
    apigee = {
      source  = "scastria/apigee"
      version = "~>0.1.50"
    }
  }
}

provider "apigee" {
  organization = "******"
  username     = "******"
  password     = "******"
  oauth_server = "*******"
}

resource "apigee_shared_flow" "main" {
  name = "test-sharedflow"
  bundle = "${path.module}/test_sharedflow.zip"
  bundle_hash = filebase64sha256("${path.module}/test_sharedflow.zip")
}
  1. Notice that not only sharedflow was created but also a proxy with the same name.
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

1 participant