-
Notifications
You must be signed in to change notification settings - Fork 4
test: update test parameters to create a new cert for domain #175
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
Conversation
/run pipeline |
/run pipeline |
/run pipeline |
|
/run pipeline |
1 similar comment
/run pipeline |
/run pipeline |
/run pipeline |
/run pipeline |
/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.
Your CBR rule says that only private endpoints can be used. So you probably need to set provider visibility to private in the example, or else remove the rule
/run pipeline |
examples/apps/main.tf
Outdated
attributes = [ | ||
{ | ||
"name" : "endpointType", | ||
"value" : "public" |
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.
Can we just omit endpointType
? This rule would mean private is not allowed, and thats not really a good practise. Alternatively you could allow private and public, or else just allow private and change provider visibility to private in the example
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.
per slack discussion, we chose to use a provider visibility (private) in the example
/run pipeline |
/run pipeline |
/run pipeline |
examples/apps/variables.tf
Outdated
@@ -109,3 +109,14 @@ variable "acme_letsencrypt_private_key" { | |||
default = null | |||
sensitive = true | |||
} | |||
|
|||
variable "provider_visibility" { |
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.
I would not expose this in the example because if someone changes it to public, it breaks right? since you have a CBR rule that mandates private
/run pipeline |
1 similar comment
/run pipeline |
/run pipeline |
🎉 This PR is included in version 3.2.4 🎉 The release is available on:
Your semantic-release bot 📦🚀 |
Description
test need to be updated to always create cert for domain because the problem is with a rate limit https://github.com/terraform-ibm-modules/terraform-ibm-code-engine/blob/main/examples/apps/main.tf#L21
because of
Invalid API type ''crn:v1:bluemix:public:context-based-restrictions::::api-type:
, we also need to update CBR typeRelease required?
x.x.X
)x.X.x
)X.x.x
)Release notes content
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