Skip to content

Commit 13d6d7e

Browse files
sliedigKevinwochan
authored andcommitted
fix: standardizing on double quotes yaml strings
1 parent 0442ce9 commit 13d6d7e

File tree

9 files changed

+12
-11
lines changed

9 files changed

+12
-11
lines changed

Unicorn.Contracts/template.yaml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
22
# SPDX-License-Identifier: MIT-0
3-
AWSTemplateFormatVersion: 2010-09-09
3+
AWSTemplateFormatVersion: "2010-09-09"
44
Transform:
55
- AWS::LanguageExtensions
66
- AWS::Serverless-2016-10-31
@@ -151,6 +151,7 @@ Resources:
151151
project: !FindInMap [Constants, ProjectName, Value]
152152
namespace: "{{resolve:ssm:/uni-prop/UnicornContractsNamespace}}"
153153

154+
# API GW Cloudwatch Log Group
154155
UnicornContractsApiLogGroup:
155156
Type: AWS::Logs::LogGroup
156157
UpdateReplacePolicy: Delete

Unicorn.Properties/Integration/event-schemas.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
22
# SPDX-License-Identifier: MIT-0
3-
AWSTemplateFormatVersion: '2010-09-09'
3+
AWSTemplateFormatVersion: "2010-09-09"
44
Description: Event Schemas for use by the Properties Service
55

66
Parameters:

Unicorn.Properties/Integration/subscriber-policies.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
22
# SPDX-License-Identifier: MIT-0
3-
AWSTemplateFormatVersion: '2010-09-09'
3+
AWSTemplateFormatVersion: "2010-09-09"
44
Description: >
55
Defines the event bus policies that determine who can create rules on the event bus to
66
subscribe to events published by Unicorn Properties Service.

Unicorn.Properties/Integration/subscriptions.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
22
# SPDX-License-Identifier: MIT-0
3-
AWSTemplateFormatVersion: '2010-09-09'
3+
AWSTemplateFormatVersion: "2010-09-09"
44
Description: Defines the rule for the events (subscriptions) that Unicorn Properties wants to consume.
55

66
Parameters:
@@ -86,5 +86,5 @@ Outputs:
8686
PublicationApprovalRequestedSubscription:
8787
Description: Rule ARN for Web service event subscription
8888
Value:
89-
Fn::GetAtt: [PublicationApprovalRequestedSubscriptionRule, Arn ]
89+
Fn::GetAtt: [ PublicationApprovalRequestedSubscriptionRule, Arn ]
9090

Unicorn.Properties/template.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
22
# SPDX-License-Identifier: MIT-0
3-
AWSTemplateFormatVersion: 2010-09-09
3+
AWSTemplateFormatVersion: "2010-09-09"
44
Transform:
55
- AWS::LanguageExtensions
66
- AWS::Serverless-2016-10-31

Unicorn.Web/Integration/event-schemas.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
22
# SPDX-License-Identifier: MIT-0
3-
AWSTemplateFormatVersion: '2010-09-09'
3+
AWSTemplateFormatVersion: "2010-09-09"
44
Description: 'Event Schemas for use by the Web Service'
55

66
Parameters:

Unicorn.Web/Integration/subscriber-policies.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
22
# SPDX-License-Identifier: MIT-0
3-
AWSTemplateFormatVersion: '2010-09-09'
3+
AWSTemplateFormatVersion: "2010-09-09"
44
Description: >
55
Defines the event bus policies that determine who can create rules on the event bus to
66
subscribe to events published by Unicorn Web Service.

Unicorn.Web/Integration/subscriptions.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
22
# SPDX-License-Identifier: MIT-0
3-
AWSTemplateFormatVersion: '2010-09-09'
3+
AWSTemplateFormatVersion: "2010-09-09"
44
Description: Defines the rule for the events (subscriptions) that Unicorn Web wants to consume.
55

66
Parameters:
@@ -59,4 +59,4 @@ Outputs:
5959
PublicationEvaluationCompletedSubscription:
6060
Description: Rule ARN for Property service event subscription
6161
Value:
62-
Fn::GetAtt: PublicationEvaluationCompletedSubscriptionRule.Arn
62+
Fn::GetAtt: [ PublicationEvaluationCompletedSubscriptionRule, Arn ]

Unicorn.Web/template.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
22
# SPDX-License-Identifier: MIT-0
3-
AWSTemplateFormatVersion: 2010-09-09
3+
AWSTemplateFormatVersion: "2010-09-09"
44
Transform:
55
- AWS::LanguageExtensions
66
- AWS::Serverless-2016-10-31

0 commit comments

Comments
 (0)