Skip to content

Commit

Permalink
fix: Remove intrinsic function to convert string to numeric (#2)
Browse files Browse the repository at this point in the history
  • Loading branch information
bryantbiggs authored Oct 1, 2024
1 parent 6ae2c60 commit 24e155b
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions state_machine.json
Original file line number Diff line number Diff line change
Expand Up @@ -33,19 +33,19 @@
"DeviceName": "/dev/xvda",
"Ebs": {
"DeleteOnTermination": true,
"Iops.$": "States.StringToJson(${ebs_volume_settings.iops})",
"Throughput.$": "States.StringToJson(${ebs_volume_settings.throughput})",
"VolumeSize.$": "States.StringToJson(${ebs_volume_settings.volume_size})",
"Iops.$": ${ebs_volume_settings.iops},
"Throughput.$": ${ebs_volume_settings.throughput},
"VolumeSize.$": ${ebs_volume_settings.volume_size},
"VolumeType": "gp3"
}
},
{
"DeviceName": "/dev/xvdb",
"Ebs": {
"DeleteOnTermination": true,
"Iops.$": "States.StringToJson(${ebs_volume_settings.iops})",
"Throughput.$": "States.StringToJson(${ebs_volume_settings.throughput})",
"VolumeSize.$": "States.StringToJson(${ebs_volume_settings.volume_size})",
"Iops.$": ${ebs_volume_settings.iops},
"Throughput.$": ${ebs_volume_settings.throughput},
"VolumeSize.$": ${ebs_volume_settings.volume_size},
"VolumeType": "gp3"
}
}
Expand Down

0 comments on commit 24e155b

Please sign in to comment.