@ -54,6 +54,8 @@ The following functionality will be removed in Ansible 2.14. Please update updat
* The :ref:`openssl_csr <openssl_csr_module>` module's option ``version`` no longer supports values other than ``1`` (the current only standardized CSR version).
* The :ref:`openssl_csr <openssl_csr_module>` module's option ``version`` no longer supports values other than ``1`` (the current only standardized CSR version).
* :ref:`docker_container <docker_container_module>`: the ``trust_image_content`` option will be removed. It has always been ignored by the module.
* :ref:`docker_container <docker_container_module>`: the ``trust_image_content`` option will be removed. It has always been ignored by the module.
* :ref:`iam_managed_policy <iam_managed_policy_module>`: the ``fail_on_delete`` option wil be removed. It has always been ignored by the module.
* :ref:`iam_managed_policy <iam_managed_policy_module>`: the ``fail_on_delete`` option wil be removed. It has always been ignored by the module.
* :ref:`s3_lifecycle <s3_lifecycle_module>`: the ``requester_pays`` option will be removed. It has always been ignored by the module.
* :ref:`s3_sync <s3_sync_module>`: the ``retries`` option will be removed. It has always been ignored by the module.
-"Indicates the lifetime, in days, of the objects that are subject to the rule. The value must be a non-zero positive integer."
-"Indicates the lifetime, in days, of the objects that are subject to the rule. The value must be a non-zero positive integer."
type:int
prefix:
prefix:
description:
description:
-"Prefix identifying one or more objects to which the rule applies. If no prefix is specified, the rule will apply to the whole bucket."
-"Prefix identifying one or more objects to which the rule applies. If no prefix is specified, the rule will apply to the whole bucket."
type:str
purge_transitions:
purge_transitions:
description:
description:
->
->
@ -54,6 +58,7 @@ options:
-'Delete noncurrent versions this many days after they become noncurrent'
-'Delete noncurrent versions this many days after they become noncurrent'
required:false
required:false
version_added:2.6
version_added:2.6
type:int
noncurrent_version_storage_class:
noncurrent_version_storage_class:
description:
description:
-'Transition noncurrent versions to this storage class'
-'Transition noncurrent versions to this storage class'
@ -61,11 +66,13 @@ options:
choices:['glacier','onezone_ia','standard_ia']
choices:['glacier','onezone_ia','standard_ia']
required:false
required:false
version_added:2.6
version_added:2.6
type:str
noncurrent_version_transition_days:
noncurrent_version_transition_days:
description:
description:
-'Transition noncurrent versions this many days after they become noncurrent'
-'Transition noncurrent versions this many days after they become noncurrent'
required:false
required:false
version_added:2.6
version_added:2.6
type:int
noncurrent_version_transitions:
noncurrent_version_transitions:
description:
description:
->
->
@ -74,34 +81,41 @@ options:
I(transition_days)
I(transition_days)
I(storage_class)
I(storage_class)
version_added:2.6
version_added:2.6
type:list
rule_id:
rule_id:
description:
description:
-"Unique identifier for the rule. The value cannot be longer than 255 characters. A unique value for the rule will be generated if no value is provided."
-"Unique identifier for the rule. The value cannot be longer than 255 characters. A unique value for the rule will be generated if no value is provided."
type:str
state:
state:
description:
description:
-"Create or remove the lifecycle rule"
-"Create or remove the lifecycle rule"
default:present
default:present
choices:['present','absent']
choices:['present','absent']
type:str
status:
status:
description:
description:
-"If 'enabled', the rule is currently being applied. If 'disabled', the rule is not currently being applied."
-"If 'enabled', the rule is currently being applied. If 'disabled', the rule is not currently being applied."
default:enabled
default:enabled
choices:['enabled','disabled']
choices:['enabled','disabled']
type:str
storage_class:
storage_class:
description:
description:
-"The storage class to transition to. Currently there are two supported values - 'glacier', 'onezone_ia', or 'standard_ia'."
-"The storage class to transition to. Currently there are two supported values - 'glacier', 'onezone_ia', or 'standard_ia'."
-"The 'standard_ia' class is only being available from Ansible version 2.2."
-"The 'standard_ia' class is only being available from Ansible version 2.2."