-
Notifications
You must be signed in to change notification settings - Fork 4k
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(ec2): add options for Cfn init proxies #19480
Conversation
@corymhall I must not be understanding the
I've tried adding and altering integration tests and continue to get this error. Am I missing something simple? Thanks! |
Integration test was updated, but erroring due to different orders in an IAM policy.
These are exactly the same policies, but synthesized with actions/resources in a different order |
@corymhall Anything I can clarify on this PR? |
AWS CodeBuild CI Report
Powered by github-codebuild-logs, available on the AWS Serverless Application Repository |
* | ||
* @default | ||
*/ | ||
readonly httpsProxy?: string; |
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.
as these are secrets, I would like to propose an alternative way:
An interface like this:
enum ProxyProtocol {
HTTP= "http",
HTTPS = "https",
}
interface IProxyConfig {
protocol: ProxyProtocol,
user?: string,
password?: ISecret,
host: string,
port?: number
}
// [...]
readonly proxy?: IProxyConfig;
take only one argument called proxy
here and decide wether -http-proxy
or -https-proxy
is appropriate.
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.
Finally getting back to this. Currently figuring out how to deal with circular dependencies between packages.
aws-secretsmanager
has a dependency on the aws-ec2
package, causing issues when doing a yarn build
within the aws-ec2
package after adding secrets manager.
Trying to figure out how to handle this if possible
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.
Articulated this in #19479
This PR cannot be merged because it has conflicts. Please resolve them. The PR will be considered stale and closed if it remains in an unmergeable state. |
5 similar comments
This PR cannot be merged because it has conflicts. Please resolve them. The PR will be considered stale and closed if it remains in an unmergeable state. |
This PR cannot be merged because it has conflicts. Please resolve them. The PR will be considered stale and closed if it remains in an unmergeable state. |
This PR cannot be merged because it has conflicts. Please resolve them. The PR will be considered stale and closed if it remains in an unmergeable state. |
This PR cannot be merged because it has conflicts. Please resolve them. The PR will be considered stale and closed if it remains in an unmergeable state. |
This PR cannot be merged because it has conflicts. Please resolve them. The PR will be considered stale and closed if it remains in an unmergeable state. |
This PR cannot be merged because it has conflicts. Please resolve them. The PR will be considered stale and closed if it remains in an unmergeable state. |
This PR has been in the BUILD FAILING state for 3 weeks, and looks abandoned. To keep this PR from being closed, please continue work on it. If not, it will automatically be closed in a week. |
This PR has been deemed to be abandoned, and will be automatically closed. Please create a new PR for these changes if you think this decision has been made in error. |
Closes #19479
All Submissions:
Adding new Unconventional Dependencies:
By submitting this pull request, I confirm that my contribution is made under the terms of the Apache-2.0 license