-
Notifications
You must be signed in to change notification settings - Fork 3.9k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
fix(cdk): fix TagManager to evaluate to undefined if no tags are incl…
…uded (#882) It is unnecessary to add "Tags" field to CloudFormation template unless tags are specified. Therefore, this patch fixes TagManager to evaluate to undefined if there are no tags included.
- Loading branch information
1 parent
56f0b4e
commit 96767d7
Showing
11 changed files
with
35 additions
and
68 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -589,7 +589,6 @@ | |
"ToPort": 80 | ||
} | ||
], | ||
"Tags": [], | ||
"VpcId": { | ||
"Ref": "VPCB9E5F0B4" | ||
} | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -476,7 +476,6 @@ | |
"ToPort": 80 | ||
} | ||
], | ||
"Tags": [], | ||
"VpcId": { | ||
"Ref": "VPCB9E5F0B4" | ||
} | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -674,7 +674,6 @@ | |
"ToPort": 80 | ||
} | ||
], | ||
"Tags": [], | ||
"VpcId": { | ||
"Ref": "VPCB9E5F0B4" | ||
} | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -185,7 +185,6 @@ | |
"ToPort": 80 | ||
} | ||
], | ||
"Tags": [], | ||
"VpcId": { | ||
"Ref": "VPCB9E5F0B4" | ||
} | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -343,7 +343,6 @@ | |
"ToPort": 80 | ||
} | ||
], | ||
"Tags": [], | ||
"VpcId": { | ||
"Ref": "VPCB9E5F0B4" | ||
} | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -382,7 +382,6 @@ | |
} | ||
], | ||
"SecurityGroupIngress": [], | ||
"Tags": [], | ||
"VpcId": { | ||
"Ref": "VPCB9E5F0B4" | ||
} | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters