Skip to content
This repository has been archived by the owner on Sep 18, 2023. It is now read-only.

Commit

Permalink
Fixing YAML format
Browse files Browse the repository at this point in the history
  • Loading branch information
andreaswittig committed Sep 1, 2023
1 parent 06abe07 commit d01431e
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion marbot-cloudformation-drift.yml
Original file line number Diff line number Diff line change
Expand Up @@ -522,7 +522,7 @@ Resources:
Code:
ZipFile: |
'use strict';
const { CloudFormationClient, DescribeStackDriftDetectionStatusCommand } = require('@aws-sdk/client-cloudformation');
const { CloudFormationClient, DescribeStackDriftDetectionStatusCommand } = require('@aws-sdk/client-cloudformation');
const cloudformation = new CloudFormationClient({apiVersion: '2010-05-15'});
exports.handler = async (event, context) => {
const result = await cloudformation.send(new DescribeStackDriftDetectionStatusCommand({StackDriftDetectionId: event.stackDriftDetectionId}));
Expand Down
2 changes: 1 addition & 1 deletion marbot.yml
Original file line number Diff line number Diff line change
Expand Up @@ -845,7 +845,7 @@ Resources:
Code:
ZipFile: |
'use strict';
const { CloudWatchClient, DescribeAlarmsCommand } = require('@aws-sdk/client-cloudwatch');
const { CloudWatchClient, DescribeAlarmsCommand } = require('@aws-sdk/client-cloudwatch');
const cloudwatch = new CloudWatchClient({apiVersion: '2010-08-01'});
const { SNSClient, PublishCommand } = require('@aws-sdk/client-sns');
const sns = new SNSClient({apiVersion: '2010-03-31'});
Expand Down

0 comments on commit d01431e

Please sign in to comment.