@@ -52,7 +52,7 @@ Globals:
5252 - x86_64
5353 Environment :
5454 Variables :
55- DYNAMODB_TABLE : !Ref WebTable
55+ DYNAMODB_TABLE : !Ref PropertiesTable
5656 EVENT_BUS : !Ref UnicornWebEventBus
5757 SERVICE_NAMESPACE : " {{resolve:ssm:/uni-prop/UnicornWebNamespace}}"
5858 POWERTOOLS_LOGGER_CASE : PascalCase
@@ -94,7 +94,7 @@ Resources:
9494 Handler : Unicorn.Web.SearchService::Unicorn.Web.SearchService.PropertySearchFunction::FunctionHandler
9595 Policies :
9696 - DynamoDBReadPolicy :
97- TableName : !Ref WebTable
97+ TableName : !Ref PropertiesTable
9898
9999 # Log group for the SearchFunction
100100 SearchFunctionLogGroup :
@@ -115,7 +115,7 @@ Resources:
115115 - EventBridgePutEventsPolicy :
116116 EventBusName : !Ref UnicornWebEventBus
117117 - DynamoDBReadPolicy :
118- TableName : !Ref WebTable
118+ TableName : !Ref PropertiesTable
119119 Events :
120120 IngestQueue :
121121 Type : SQS
@@ -143,7 +143,7 @@ Resources:
143143 Handler : Unicorn.Web.PublicationManagerService::Unicorn.Web.PublicationManagerService.PublicationEvaluationEventHandler::FunctionHandler
144144 Policies :
145145 - DynamoDBCrudPolicy :
146- TableName : !Ref WebTable
146+ TableName : !Ref PropertiesTable
147147 EventInvokeConfig :
148148 DestinationConfig :
149149 OnFailure :
@@ -295,7 +295,7 @@ Resources:
295295
296296 # #### DYNAMODB
297297 # Persists Property details in DynamoDB
298- WebTable :
298+ PropertiesTable :
299299 Type : AWS::DynamoDB::Table
300300 UpdateReplacePolicy : Delete
301301 DeletionPolicy : Delete
@@ -473,9 +473,9 @@ Outputs:
473473 Value : !GetAtt UnicornWebIngestQueue.QueueUrl
474474
475475 # ### DYNAMODB OUTPUTS
476- UnicornWebTableName :
476+ PropertiesTableName :
477477 Description : Name of the DynamoDB Table for Unicorn Web
478- Value : !Ref WebTable
478+ Value : !Ref PropertiesTable
479479
480480 # ### LAMBDA FUNCTIONS OUTPUTS
481481 SearchFunctionArn :
0 commit comments