Skip to content

Instantly share code, notes, and snippets.

@jtimberman
Created February 5, 2010 20:31
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 1 You must be signed in to fork a gist
  • Save jtimberman/296193 to your computer and use it in GitHub Desktop.
Save jtimberman/296193 to your computer and use it in GitHub Desktop.
AWS EBS LWRP aws_ebs_volume
aws_ebs_volume "my_ebs_volume" do
aws_access_key node[:aws][:aws_access_key_id]
aws_secret_access_key node[:aws][:aws_secret_access_key]
size 50
device "/dev/sdi"
volume_id node[:ebs][:volume_id]
action [ :create, :attach ]
provider "aws_ebs_volume"
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment