Skip to content

Commit 633fefa

Browse files
committed
chore: add cfn tag to integ tests
1 parent 242ecfa commit 633fefa

File tree

1 file changed

+6
-1
lines changed

1 file changed

+6
-1
lines changed

Tools/LambdaTestTool-v2/tests/Amazon.Lambda.TestTool.IntegrationTests/Helpers/CloudFormationHelper.cs

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,12 @@ public async Task<string> CreateStackAsync(string stackName, string templateBody
2121
{
2222
StackName = stackName,
2323
TemplateBody = templateBody,
24-
Capabilities = new List<string> { "CAPABILITY_IAM" }
24+
Capabilities = new List<string> { "CAPABILITY_IAM" },
25+
Tags = new List<Tag>
26+
{
27+
new Tag { Key = "aws-tests", Value = typeof(CloudFormationHelper).FullName },
28+
new Tag { Key = "aws-repo", Value = "aws-lambda-dotnet" }
29+
}
2530
});
2631
return response.StackId;
2732
}

0 commit comments

Comments
 (0)