Skip to content

Instantly share code, notes, and snippets.

@100daysofdevops
Created March 5, 2019 16:02
Show Gist options
  • Select an option

  • Save 100daysofdevops/3e731cb7b675e1ce1bf809048ec62ca3 to your computer and use it in GitHub Desktop.

Select an option

Save 100daysofdevops/3e731cb7b675e1ce1bf809048ec62ca3 to your computer and use it in GitHub Desktop.
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