diff options
author | Charles Paul <charles@yougroup.hk> | 2016-10-27 12:00:20 +0800 |
---|---|---|
committer | Charles Paul <charles@yougroup.hk> | 2016-10-27 17:51:46 +0800 |
commit | 1163b4bb50f369e43765c5699b8866db2938f4bb (patch) | |
tree | 7d4b7cc9c3372c5044889252718f5a149dce6836 /cloud/amazon/ec2.py | |
parent | 48cd199871a097077f1ae04ef54c5a9467d6034b (diff) | |
download | ansible-modules-core-1163b4bb50f369e43765c5699b8866db2938f4bb.tar.gz |
add id: back to documentation
Diffstat (limited to 'cloud/amazon/ec2.py')
-rw-r--r-- | cloud/amazon/ec2.py | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/cloud/amazon/ec2.py b/cloud/amazon/ec2.py index f2407c7a..0b921c4b 100644 --- a/cloud/amazon/ec2.py +++ b/cloud/amazon/ec2.py @@ -29,6 +29,13 @@ options: required: false default: null aliases: ['keypair'] + id: + version_added: "1.1" + description: + - identifier for this instance or set of instances, so that the module will be idempotent with respect to EC2 instances. This identifier is valid for at least 24 hours after the termination of the instance, and should not be reused for another call later on. For details, see the description of client token at U(http://docs.aws.amazon.com/AWSEC2/latest/UserGuide/Run_Instance_Idempotency.html). + required: false + default: null + aliases: [] group: description: - security group (or list of groups) to use with the instance |