-
Notifications
You must be signed in to change notification settings - Fork 3
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
feat:exposed visibility value for the provider in the DA #245
Conversation
/run pipeline |
/run pipeline |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
One more change required. Can you update the cra-config.yaml
file and add the following TF_VAR:
TF_VAR_provider_visibility: "public"
(I'm surprised the pipeline passed without this change to be honest)
/run pipeline |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
@Aditya-ranjan-16 The test failed with this error:
Error: [ERROR] Error when creating resource instance: Please contact the Service Provider for this error. [422, Unprocessable Entity] This account reached the number of Trial plan instances that are allowed. To proceed, you must select the Standard plan or delete an existing Trial instance. If you delete the Trial plan instance, you must also delete its reclamation by using the IBM Cloud CLI.
However our test should not be creating a new secrets manager instance. I took a look, and it seems there is a bug in the complete example. To address, can you add a count around the secrets manager module call here like so:
count = var.existing_sm_instance_guid == null ? 1 : 0
…_sm_instance_guid is passed as input)
/run pipeline |
/run pipeline |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
@Aditya-ranjan-16 Can you please update
module.secrets_manager.secrets_manager_guid
-> module.secrets_manager[0].secrets_manager_guid
The complete example will fail if consumer wants to create a new sm_instance.
/run pipeline |
🎉 This PR is included in version 1.3.0 🎉 The release is available on:
Your semantic-release bot 📦🚀 |
Description
exposed visibility value for the provider in the DA , with default value set to "private"
Git issue
Release required?
x.x.X
)x.X.x
)X.x.x
)Release notes content
exposes visibility value for the provider in the DA
Run the pipeline
If the CI pipeline doesn't run when you create the PR, the PR requires a user with GitHub collaborators access to run the pipeline.
Run the CI pipeline when the PR is ready for review and you expect tests to pass. Add a comment to the PR with the following text:
Checklist for reviewers
For mergers