We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e4215e2 commit fa7ae6cCopy full SHA for fa7ae6c
src/ec2-facade.ts
@@ -44,7 +44,7 @@ export class EC2Facade {
44
if (!id) {
45
throw Error('InstanceId is missing');
46
}
47
- console.log(`Creating tags for ec2: ${instance}: ${JSON.stringify(tags)}`);
+ console.log(`Creating tags for ec2: ${id}: ${JSON.stringify(tags)}`);
48
return this.createTags({
49
Resources: [id],
50
Tags: tags,
@@ -56,7 +56,7 @@ export class EC2Facade {
56
57
58
59
- console.log(`Deleting tags for ec2: ${instance}: ${JSON.stringify(tags)}`);
+ console.log(`Deleting tags for ec2: ${id}: ${JSON.stringify(tags)}`);
60
return this.deleteTags({
61
62
0 commit comments