Skip to content

Commit

Permalink
fix: Correct state machine definition for non-variable values
Browse files Browse the repository at this point in the history
  • Loading branch information
bryantbiggs committed Oct 1, 2024
1 parent fd2c662 commit 3228392
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.$": ${ebs_volume_settings.iops},
"Throughput.$": ${ebs_volume_settings.throughput},
"VolumeSize.$": ${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.$": ${ebs_volume_settings.iops},
"Throughput.$": ${ebs_volume_settings.throughput},
"VolumeSize.$": ${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 3228392

Please sign in to comment.