Skip to content

Commit

Permalink
pass value as string instead of int (#245)
Browse files Browse the repository at this point in the history
fix deployment error.. 
```
"Parameter validation failed:\nInvalid type for parameter Parameters[5].
ParameterValue, value: 1024, type: <class 'int'>, valid types: <class 'str'>"
```
  • Loading branch information
zaro0508 authored Oct 9, 2023
1 parent 714c9d2 commit 86d88ed
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion config/infra-prod/nextflow-efs-file-system.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ parameters:
EcsSecurityGroupId: !stack_output_external nextflow-ecs-security-group::SecurityGroupId
NextflowTowerConfigBucketArn: !stack_output_external nextflow-tower-config::BucketArn
ThroughputMode: provisioned
ProvisionedThroughputInMibps: 1024
ProvisionedThroughputInMibps: "1024"

stack_tags:
{{stack_group_config.default_stack_tags}}

0 comments on commit 86d88ed

Please sign in to comment.