UNCLASSIFIED - NO CUI

Skip to content
Snippets Groups Projects
Verified Commit 97081a77 authored by Danny Gershman's avatar Danny Gershman :lock:
Browse files

[k3d-dev.sh] using gp3 and volume encryption

parent a61bf67a
No related branches found
No related tags found
1 merge request!2677[k3d-dev.sh] using gp3 and volume encryption
......@@ -292,14 +292,16 @@ EOF
echo "Creating device_mappings.json ..."
mkdir -p ~/aws
# gp3 volumes are 20% cheaper than gp2 and comes with 3000 Iops baseline and 125 MiB/s baseline throughput for free.
cat << EOF > ~/aws/device_mappings.json
[
{
"DeviceName": "/dev/sda1",
"Ebs": {
"DeleteOnTermination": true,
"VolumeType": "gp2",
"VolumeSize": ${VolumeSize}
"VolumeType": "gp3",
"VolumeSize": ${VolumeSize},
"Encrypted": true
}
}
]
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment