-
Notifications
You must be signed in to change notification settings - Fork 30
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
infra: Migrate internal load balancer security group to CDK #8428
Conversation
Size Change: 0 B Total Size: 650 kB ℹ️ View Unchanged
|
@@ -4,10 +4,12 @@ import { DotcomRendering } from '../lib/dotcom-rendering'; | |||
|
|||
const app = new App(); | |||
new DotcomRendering(app, 'DotcomRendering-PROD', { | |||
app: 'rendering', |
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.
From what I can see in the logs, this is actually called dotcom-rendering
.
Or is this set elsewhere?
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.
Our "naming" is REALLY inconsistent, but I believe "rendering" is correct. Its set here: https://github.com/guardian/dotcom-rendering/pull/8428/files#diff-27418f23c8cbec59b8753ad54c095fd59254f5626f1a48ce77acd161fb3ab3c7R17
AWS Resource name =/= ELK App name
unfortunately :/
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!
32eb7f6
to
183262d
Compare
Co-authored-by: Parisa Tork <[email protected]>
0d9dd9f
to
1ac23c6
Compare
What does this change?
Replaces
InternalLoadBalancerSecurityGroup
resource in Cloudformation with a CDK-defined one.Why?
Part of our migration from Cloudformation to CDK.
Resolves #7625.