mirror of
https://github.com/ansible-collections/community.general.git
synced 2025-08-02 12:14:25 -07:00
doc style adjustments: modules t*
This commit is contained in:
parent
17be4ff2f2
commit
9672dd44f2
2 changed files with 9 additions and 9 deletions
|
@ -21,7 +21,7 @@ description:
|
||||||
- Send notifications using telegram bot, to a verified group or user.
|
- Send notifications using telegram bot, to a verified group or user.
|
||||||
- Also, the user may try to use any other telegram bot API method, if you specify O(api_method) argument.
|
- Also, the user may try to use any other telegram bot API method, if you specify O(api_method) argument.
|
||||||
notes:
|
notes:
|
||||||
- You will require a telegram account and create telegram bot to use this module.
|
- You need a telegram account and create telegram bot to use this module.
|
||||||
extends_documentation_fragment:
|
extends_documentation_fragment:
|
||||||
- community.general.attributes
|
- community.general.attributes
|
||||||
attributes:
|
attributes:
|
||||||
|
|
|
@ -58,19 +58,19 @@ options:
|
||||||
purge_workspace:
|
purge_workspace:
|
||||||
description:
|
description:
|
||||||
- Only works with state = absent.
|
- Only works with state = absent.
|
||||||
- If true, the workspace will be deleted after the "terraform destroy" action.
|
- If V(true), the O(workspace) is deleted after the C(terraform destroy) action.
|
||||||
- The 'default' workspace will not be deleted.
|
- If O(workspace=default) then it is not deleted.
|
||||||
default: false
|
default: false
|
||||||
type: bool
|
type: bool
|
||||||
plan_file:
|
plan_file:
|
||||||
description:
|
description:
|
||||||
- The path to an existing Terraform plan file to apply. If this is not specified, Ansible will build a new TF plan and
|
- The path to an existing Terraform plan file to apply. If this is not specified, Ansible builds a new TF plan and execute
|
||||||
execute it. Note that this option is required if 'state' has the 'planned' value.
|
it. Note that this option is required if O(state=planned).
|
||||||
type: path
|
type: path
|
||||||
state_file:
|
state_file:
|
||||||
description:
|
description:
|
||||||
- The path to an existing Terraform state file to use when building plan. If this is not specified, the default C(terraform.tfstate)
|
- The path to an existing Terraform state file to use when building plan. If this is not specified, the default C(terraform.tfstate)
|
||||||
will be used.
|
is used.
|
||||||
- This option is ignored when plan is specified.
|
- This option is ignored when plan is specified.
|
||||||
type: path
|
type: path
|
||||||
variables_files:
|
variables_files:
|
||||||
|
@ -91,7 +91,7 @@ options:
|
||||||
- Ansible dictionaries are mapped to terraform objects.
|
- Ansible dictionaries are mapped to terraform objects.
|
||||||
- Ansible lists are mapped to terraform lists.
|
- Ansible lists are mapped to terraform lists.
|
||||||
- Ansible booleans are mapped to terraform booleans.
|
- Ansible booleans are mapped to terraform booleans.
|
||||||
- B(Note) passwords passed as variables will be visible in the log output. Make sure to use C(no_log=true) in production!.
|
- B(Note) passwords passed as variables are visible in the log output. Make sure to use C(no_log=true) in production!.
|
||||||
type: dict
|
type: dict
|
||||||
complex_vars:
|
complex_vars:
|
||||||
description:
|
description:
|
||||||
|
@ -104,7 +104,7 @@ options:
|
||||||
version_added: 5.7.0
|
version_added: 5.7.0
|
||||||
targets:
|
targets:
|
||||||
description:
|
description:
|
||||||
- A list of specific resources to target in this plan/application. The resources selected here will also auto-include
|
- A list of specific resources to target in this plan/application. The resources selected here are also auto-include
|
||||||
any dependencies.
|
any dependencies.
|
||||||
type: list
|
type: list
|
||||||
elements: str
|
elements: str
|
||||||
|
@ -120,7 +120,7 @@ options:
|
||||||
type: int
|
type: int
|
||||||
force_init:
|
force_init:
|
||||||
description:
|
description:
|
||||||
- To avoid duplicating infra, if a state file cannot be found this will force a C(terraform init). Generally, this should
|
- To avoid duplicating infra, if a state file cannot be found this forces a C(terraform init). Generally, this should
|
||||||
be turned off unless you intend to provision an entirely new Terraform deployment.
|
be turned off unless you intend to provision an entirely new Terraform deployment.
|
||||||
default: false
|
default: false
|
||||||
type: bool
|
type: bool
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue