Skip to content

Commit

Permalink
feat(cdk): Enable local CFN stack diffing
Browse files Browse the repository at this point in the history
It is sometimes useful to see the delta between the current branch and the CODE CloudFormation stack.

This change allows us to run:

```bash
npm -w cdk run diff:code
```

to yield something like this:

```console
Stack ServiceCatalogue-CODE (deploy-CODE-service-catalogue)
Creating a change set, this may take a while...
IAM Policy Changes
┌───┬─────────────────────────────────────┬────────────────────────────────────────┐
│   │ Resource                            │ Managed Policy ARN                     │
├───┼─────────────────────────────────────┼────────────────────────────────────────┤
│ - │ ${steampipeTaskDefinition/TaskRole} │ arn:aws:iam::aws:policy/ReadOnlyAccess │
└───┴─────────────────────────────────────┴────────────────────────────────────────┘
(NOTE: There may be security-related changes not in this list. See aws/aws-cdk#1299)

Resources
[~] AWS::IAM::Role steampipeTaskDefinition/TaskRole steampipeTaskDefinitionTaskRole8DC44379
 └─ [-] ManagedPolicyArns
     └─ ["arn:aws:iam::aws:policy/ReadOnlyAccess"]
[~] AWS::ECS::TaskDefinition steampipeTaskDefinition steampipeTaskDefinition767BA166 replace
 └─ [~] ContainerDefinitions (requires replacement)
     └─ @@ -11,7 +11,7 @@
        [ ]   "App": "service-catalogue"
        [ ] },
        [ ] "Essential": true,
        [-] "Image": "ghcr.io/guardian/service-catalogue/steampipe:2",
        [+] "Image": "ghcr.io/guardian/service-catalogue/steampipe:1",
        [ ] "LogConfiguration": {
        [ ]   "LogDriver": "awsfirelens",
        [ ]   "Options": {

✨  Number of stacks with differences: 1
```
  • Loading branch information
akash1810 committed Jan 25, 2024
1 parent cb6be47 commit 47626e7
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 1 deletion.
2 changes: 2 additions & 0 deletions packages/cdk/bin/cdk.ts
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,7 @@ new ServiceCatalogue(app, 'ServiceCatalogue-PROD', {
stage: 'PROD',
env: { region: 'eu-west-1' },
steampipeDomainName: 'steampipe.gutools.co.uk',
cloudFormationStackName: 'deploy-PROD-service-catalogue',
});

new ServiceCatalogue(app, 'ServiceCatalogue-CODE', {
Expand All @@ -20,4 +21,5 @@ new ServiceCatalogue(app, 'ServiceCatalogue-CODE', {
schedule: Schedule.rate(Duration.days(30)),
rdsDeletionProtection: false,
steampipeDomainName: 'steampipe.code.dev-gutools.co.uk',
cloudFormationStackName: 'deploy-CODE-service-catalogue',
});
3 changes: 2 additions & 1 deletion packages/cdk/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,8 @@
"version": "1.0.0",
"scripts": {
"test": "jest --detectOpenHandles --config ../../jest.config.js --selectProjects cdk",
"synth": "cdk synth --path-metadata false --version-reporting false"
"synth": "cdk synth --path-metadata false --version-reporting false",
"diff:code": "cdk diff --path-metadata false --version-reporting false --profile deployTools ServiceCatalogue-CODE"
},
"devDependencies": {
"@guardian/cdk": "53.0.3",
Expand Down

0 comments on commit 47626e7

Please sign in to comment.