-
Notifications
You must be signed in to change notification settings - Fork 42
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(deadline): use TLS between RenderQueue and clients by default #491
Conversation
fixes #490 BREAKING CHANGE: Farms currently not configured to use external TLS on the Render Queue will be modified to have it enabled and using the default certificate and hosted zone. To continue to keep external TLS disabled, the `enabled` flag on the `RenderQueueExternalTLSProps` can be set to false; however, we strongly encourage you to enable TLS.
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.
Great work! Just a few minor suggestions
examples/deadline/EC2-Image-Builder/python/package/lib/base_farm_stack.py
Outdated
Show resolved
Hide resolved
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.
Looks good, just want to clarify a couple moments.
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.
This is looking good to me. Only one more request...
Since this is a breaking change, do you mind adding upgrade documentation to packages/aws-rfdk/docs/upgrade
like we have for 0.27.0? This should help guide a RFDK user through the process of upgrading and determining whether they need to take any action and if so, what action to take.
examples/deadline/EC2-Image-Builder/python/package/lib/base_farm_stack.py
Outdated
Show resolved
Hide resolved
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.
Just a few more suggestions based on the new commit.
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.
Just a few tiny suggestions left for the upgrade docs but otherwise this looks good to me.
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.
Great work @horsmand. Thanks for making RFDK more secure by default and providing docs to guide customers through this breaking change.
This looks good to me
fixes #490
BREAKING CHANGE: Farms currently not configured to use external TLS on
the Render Queue will be modified to have it enabled and using the
default certificate and hosted zone. To continue to keep external TLS
disabled, the
enabled
flag on theRenderQueueExternalTLSProps
can beset to false; however, we strongly encourage you to enable TLS.
Testing
This has full unit test coverage and was also tested by deploying the render queue and worker fleet integration test suites.
By submitting this pull request, I confirm that my contribution is made under the terms of the Apache-2.0 license