Created
May 2, 2021 18:48
-
-
Save KyMidd/26ddc17605f6811c4bcae64a385b91c2 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| ebs_block_device = { | |
| "/dev/sdl" = { | |
| volume_type = "standard" | |
| volume_size = 50 | |
| encrypted = true | |
| kms_key_id = var.kms_key_arn | |
| }, | |
| "xvdf" = { | |
| volume_type = "gp2" | |
| volume_size = 200 | |
| encrypted = true | |
| kms_key_id = var.kms_key_arn | |
| } | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment