Skip to content

Commit 203d3bc

Browse files
committed
chore: multiple fixes and changes to align all runtime implementations and their respective cookie-cutters
1 parent 9878893 commit 203d3bc

File tree

9 files changed

+17
-17
lines changed

9 files changed

+17
-17
lines changed

Unicorn.Contracts/Integration/event-schemas.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ Resources:
2828
RegistryName:
2929
Fn::GetAtt: EventRegistry.RegistryName
3030
Policy:
31-
Version: '2012-10-17'
31+
Version: "2012-10-17"
3232
Statement:
3333
- Sid: AllowExternalServices
3434
Effect: Allow

Unicorn.Contracts/Integration/subscriber-policies.yaml

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

Unicorn.Contracts/template.yaml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -62,7 +62,7 @@ Globals:
6262
POWERTOOLS_LOGGER_SAMPLE_RATE: !If [IsProd, "0.1", "0"] # Debug log sampling percentage, default
6363
POWERTOOLS_METRICS_NAMESPACE: !Sub "{{resolve:ssm:/uni-prop/${Stage}/UnicornContractsNamespace}}"
6464
POWERTOOLS_LOG_LEVEL: INFO # Log level for Logger (INFO, DEBUG, etc.), default
65-
LOG_LEVEL: INFO # Log level for Logger (INFO, DEBUG, etc.), default
65+
LOG_LEVEL: INFO # Log level for Logger
6666
Tags:
6767
stage: !Ref Stage
6868
project: !FindInMap [Constants, ProjectName, Value]
@@ -438,7 +438,7 @@ Resources:
438438
EventSchemasStack:
439439
Type: AWS::Serverless::Application
440440
Properties:
441-
Location: "integration/event-schemas.yaml"
441+
Location: "Integration/event-schemas.yaml"
442442
Parameters:
443443
Stage: !Ref Stage
444444

@@ -448,7 +448,7 @@ Resources:
448448
DependsOn:
449449
- UnicornContractsEventBusNameParam
450450
Properties:
451-
Location: "integration/subscriber-policies.yaml"
451+
Location: "Integration/subscriber-policies.yaml"
452452
Parameters:
453453
Stage: !Ref Stage
454454

Unicorn.Properties/Integration/event-schemas.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ Resources:
2626
RegistryName:
2727
Fn::GetAtt: EventRegistry.RegistryName
2828
Policy:
29-
Version: '2012-10-17'
29+
Version: "2012-10-17"
3030
Statement:
3131
- Sid: AllowExternalServices
3232
Effect: Allow

Unicorn.Properties/Integration/subscriber-policies.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
# Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
22
# SPDX-License-Identifier: MIT-0
33
AWSTemplateFormatVersion: '2010-09-09'
4-
Description: |
4+
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.
77

Unicorn.Properties/template.yaml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -61,7 +61,7 @@ Globals:
6161
POWERTOOLS_LOGGER_SAMPLE_RATE: !If [IsProd, "0.1", "0"] # Debug log sampling percentage, default
6262
POWERTOOLS_METRICS_NAMESPACE: !Sub "{{resolve:ssm:/uni-prop/${Stage}/UnicornPropertiesNamespace}}"
6363
POWERTOOLS_LOG_LEVEL: INFO # Log level for Logger (INFO, DEBUG, etc.), default
64-
LOG_LEVEL: INFO # Log level for Logger (INFO, DEBUG, etc.), default
64+
LOG_LEVEL: INFO # Log level for Logger
6565
Tags:
6666
stage: !Ref Stage
6767
project: !FindInMap [Constants, ProjectName, Value]
@@ -449,7 +449,7 @@ Resources:
449449
EventSchemasStack:
450450
Type: AWS::Serverless::Application
451451
Properties:
452-
Location: "integration/event-schemas.yaml"
452+
Location: "Integration/event-schemas.yaml"
453453
Parameters:
454454
Stage: !Ref Stage
455455

@@ -459,7 +459,7 @@ Resources:
459459
DependsOn:
460460
- UnicornPropertiesEventBusNameParam
461461
Properties:
462-
Location: "integration/subscriber-policies.yaml"
462+
Location: "Integration/subscriber-policies.yaml"
463463
Parameters:
464464
Stage: !Ref Stage
465465

@@ -469,7 +469,7 @@ Resources:
469469
DependsOn:
470470
- UnicornPropertiesEventBusArnParam
471471
Properties:
472-
Location: "integration/subscriptions.yaml"
472+
Location: "Integration/subscriptions.yaml"
473473
Parameters:
474474
Stage: !Ref Stage
475475

Unicorn.Web/Integration/event-schemas.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ Resources:
2626
RegistryName:
2727
Fn::GetAtt: EventRegistry.RegistryName
2828
Policy:
29-
Version: '2012-10-17'
29+
Version: "2012-10-17"
3030
Statement:
3131
- Sid: AllowExternalServices
3232
Effect: Allow

Unicorn.Web/Integration/subscriber-policies.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
# Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
22
# SPDX-License-Identifier: MIT-0
33
AWSTemplateFormatVersion: '2010-09-09'
4-
Description: |
4+
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.
77

Unicorn.Web/template.yaml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -63,7 +63,7 @@ Globals:
6363
POWERTOOLS_LOGGER_SAMPLE_RATE: !If [IsProd, "0.1", "0"] # Debug log sampling percentage, default
6464
POWERTOOLS_METRICS_NAMESPACE: !Sub "{{resolve:ssm:/uni-prop/${Stage}/UnicornWebNamespace}}"
6565
POWERTOOLS_LOG_LEVEL: INFO # Log level for Logger (INFO, DEBUG, etc.), default
66-
LOG_LEVEL: INFO # Log level for Logger (INFO, DEBUG, etc.), default
66+
LOG_LEVEL: INFO # Log level for Logger
6767
Tags:
6868
stage: !Ref Stage
6969
project: !FindInMap [Constants, ProjectName, Value]
@@ -425,7 +425,7 @@ Resources:
425425
EventSchemasStack:
426426
Type: AWS::Serverless::Application
427427
Properties:
428-
Location: "integration/event-schemas.yaml"
428+
Location: "Integration/event-schemas.yaml"
429429
Parameters:
430430
Stage: !Ref Stage
431431

@@ -435,7 +435,7 @@ Resources:
435435
DependsOn:
436436
- UnicornWebEventBusParam
437437
Properties:
438-
Location: "integration/subscriber-policies.yaml"
438+
Location: "Integration/subscriber-policies.yaml"
439439
Parameters:
440440
Stage: !Ref Stage
441441

@@ -445,7 +445,7 @@ Resources:
445445
DependsOn:
446446
- UnicornWebEventBusArnParam
447447
Properties:
448-
Location: "integration/subscriptions.yaml"
448+
Location: "Integration/subscriptions.yaml"
449449
Parameters:
450450
Stage: !Ref Stage
451451

0 commit comments

Comments
 (0)