Changelog updates and a few module renames. vpc -> ec2_vpc, githooks -> github_hooks, blacklist -> kernel_blacklist. These are all new in 1.4 so safe to change.

This commit is contained in:
Michael DeHaan
2013-11-18 18:28:21 -05:00
parent aee1fcad05
commit 2726b13245
4 changed files with 54 additions and 16 deletions

View File

@@ -109,14 +109,14 @@ EXAMPLES = '''
# Basic creation example:
local_action:
module: vpc
module: ec2_vpc
state: present
cidr_block: 172.23.0.0/16
region: us-west-2
# Full creation example with subnets and optional availability zones.
# The absence or presense of subnets deletes or creates them respectively.
local_action:
module: vpc
module: ec2_vpc
state: present
cidr_block: 172.22.0.0/16
subnets:
@@ -144,7 +144,7 @@ EXAMPLES = '''
# Removal of a VPC by id
local_action:
module: vpc
module: ec2_vpc
state: absent
vpc_id: vpc-aaaaaaa
region: us-west-2