Created
February 5, 2010 20:31
-
-
Save jtimberman/296193 to your computer and use it in GitHub Desktop.
AWS EBS LWRP aws_ebs_volume
This file contains 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
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