Skip to content

Commit

Permalink
Merge pull request #90 from Canadian-Geospatial-Platform/dev
Browse files Browse the repository at this point in the history
Dev
  • Loading branch information
bo-lu authored Oct 24, 2024
2 parents 482275c + 4f62cd1 commit c2d827c
Show file tree
Hide file tree
Showing 8 changed files with 9 additions and 10 deletions.
10 changes: 5 additions & 5 deletions docs/cloudformation/geocore-eo-rcm-ard-harvester.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ Parameters:
Type: String
Default: 'ca-central-1'
Description: Default region for deployment.
SGrcm-ardProcessesTableName:
SGRCMARDProcessesTableName:
Type: String
Default: eo_sg_rcm-ard_processes
Description: DynamoDB table name to store information by process triggered
Expand Down Expand Up @@ -37,13 +37,13 @@ Conditions:
IsProd: !Equals [prod, !Ref Environment]
IsStage: !Equals [stage, !Ref Environment]
IsDev: !Equals [dev, !Ref Environment]
CreateProcessedBucket: !Equals [true, !Ref CreateProcessedBucket]
CreateLinksBucket: !Equals [true, !Ref CreateLinksBucket]
ShouldCreateProcessedBucket: !Equals [true, !Ref CreateProcessedBucket]
ShouldCreateLinksBucket: !Equals [true, !Ref CreateLinksBucket]

Resources:
ProcessedDataS3Bucket:
Type: 'AWS::S3::Bucket'
Condition: CreateProcessedBucket
Condition: ShouldCreateProcessedBucket
Properties:
BucketName: !Sub 'eo-sg-processed-data-rcm-ard-${Environment}'
BucketEncryption:
Expand All @@ -59,7 +59,7 @@ Resources:

EOItemLinksS3Bucket:
Type: 'AWS::S3::Bucket'
Condition: CreateLinksBucket
Condition: ShouldCreateLinksBucket
Properties:
BucketName: !Sub 'eo-sg-datacube-item-links-${Environment}'
BucketEncryption:
Expand Down
9 changes: 4 additions & 5 deletions docs/cloudformation/geocore-eo-sentinel1-harvester.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,6 @@ AWSTemplateFormatVersion: '2010-09-09'
Transform: AWS::Serverless-2016-10-31
Description: Sentinel-1 collection harvestor using serverless Scatter Gather pattern


Parameters:
RegionName:
Type: String
Expand Down Expand Up @@ -37,13 +36,13 @@ Conditions:
IsProd: !Equals [prod, !Ref Environment]
IsStage: !Equals [stage, !Ref Environment]
IsDev: !Equals [dev, !Ref Environment]
CreateProcessedBucket: !Equals [true, !Ref CreateProcessedBucket]
CreateLinksBucket: !Equals [true, !Ref CreateLinksBucket]
ShouldCreateProcessedBucket: !Equals [true, !Ref CreateProcessedBucket]
ShouldCreateLinksBucket: !Equals [true, !Ref CreateLinksBucket]

Resources:
ProcessedDataSentinel1S3Bucket:
Type: 'AWS::S3::Bucket'
Condition: CreateProcessedBucket
Condition: ShouldCreateProcessedBucket
Properties:
BucketName: !Sub 'eo-sg-processed-data-sentinel1-${Environment}'
BucketEncryption:
Expand All @@ -59,7 +58,7 @@ Resources:

EOItemLinksS3Bucket:
Type: 'AWS::S3::Bucket'
Condition: CreateLinksBucket
Condition: ShouldCreateLinksBucket
Properties:
BucketName: !Sub 'eo-sg-datacube-item-links-${Environment}'
BucketEncryption:
Expand Down
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.

0 comments on commit c2d827c

Please sign in to comment.