Created
March 5, 2019 16:02
-
-
Save 100daysofdevops/3e731cb7b675e1ce1bf809048ec62ca3 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
| provider "aws" { | |
| region = "us-west-2" | |
| } | |
| resource "aws_ebs_volume" "my-test-kms-ebs" { | |
| availability_zone = "us-west-2a" | |
| size = 10 | |
| type = "gp2" | |
| encrypted = true | |
| kms_key_id = "${var.kms_key}" | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment