Convert to reduced list of known types (#50010)

This commit is contained in:
Dag Wieers
2018-12-18 22:25:30 +01:00
committed by Jordan Borean
parent fcd1486b51
commit 05c6ff79f9
908 changed files with 4822 additions and 4821 deletions

View File

@@ -112,16 +112,16 @@ EXAMPLES = """
RETURN = """
service_name:
type: string
type: str
description: The service name specified in the serverless.yml that was just deployed.
returned: always
sample: my-fancy-service-dev
state:
type: string
type: str
description: Whether the stack for the serverless project is present/absent.
returned: always
command:
type: string
type: str
description: Full `serverless` command run by this module, in case you want to re-run the command outside the module.
returned: always
sample: serverless deploy --stage production

View File

@@ -139,19 +139,19 @@ outputs:
returned: always
description: Whether Terraform has marked this value as sensitive
type:
type: string
type: str
returned: always
description: The type of the value (string, int, etc)
value:
returned: always
description: The value of the output as interpolated by Terraform
stdout:
type: string
type: str
description: Full `terraform` command stdout, in case you want to display it or examine the event log
returned: always
sample: ''
command:
type: string
type: str
description: Full `terraform` command built by this module, in case you want to re-run the command outside the module or debug a problem.
returned: always
sample: terraform apply ...

View File

@@ -122,7 +122,7 @@ list_vms:
# for status command
status:
description: The status of the VM, among running, crashed, paused and shutdown
type: string
type: str
sample: "success"
returned: success
'''