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

Commit

Permalink
updated typos and missed string to number
Browse files Browse the repository at this point in the history
  • Loading branch information
Friedman committed Jun 5, 2021
1 parent aa724b3 commit 51bffd3
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 5 deletions.
2 changes: 1 addition & 1 deletion src/templates/gwfcore/gwfcore-efs.template.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ Conditions:
5SubnetCondition: !Or
- !Equals [!Ref 'NumberOfSubnets', '5']
- !Condition '6SubnetCondition'
6SubnetCondition: !Equals [!Ref NumberOfSubnets, '4']
6SubnetCondition: !Equals [!Ref NumberOfSubnets, '6']

Resources:
SharedDataFileSystem:
Expand Down
5 changes: 3 additions & 2 deletions src/templates/gwfcore/gwfcore-root.template.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -74,9 +74,10 @@ Parameters:
Type: List<AWS::EC2::Subnet::Id>
Description: 'Subnets you want your batch compute environment to launch in. We recommend private subnets. NOTE: Must be from the VPC provided.'
NumberOfSubnets:
Type: String
Type: Number
Description: Number of subnets to launch into. Should correspond to the length of Subnet Ids
AllowedPattern: '[1-4]'
MinValue: 1
MaxValue: 6
S3BucketName:
Description: >-
A S3 bucket name for storing analysis results.
Expand Down
5 changes: 3 additions & 2 deletions src/templates/nextflow/nextflow-and-core.template.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -135,9 +135,10 @@ Parameters:
Type: String
Default: ""
NumberOfSubnets:
Type: String
Type: Number
Description: Number of subnets to launch into. Should correspond to the length of Subnet Ids
AllowedPattern: '[1-4]'
MinValue: 1
MaxValue: 6
DefaultCEMinvCpus:
Description: The minimum number of CPUs for the default Batch Compute Environment
Type: Number
Expand Down

0 comments on commit 51bffd3

Please sign in to comment.