Remove dead 'vault_password' play attribute (#41847)

pull/43266/head
Andrew Gaffney 6 years ago committed by GitHub
parent 9bf22309b3
commit dbff49dee0
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

@ -71,5 +71,4 @@ until: "This keyword implies a ':term:`retries` loop' that will go on until the
vars: Dictionary/map of variables
vars_files: List of files that contain vars to include in the play.
vars_prompt: list of variables to prompt for.
vault_password: Secret used to decrypt vaulted files or variables.
when: Conditional expression, determines if an iteration of a task is run or not.

@ -65,7 +65,6 @@ class Play(Base, Taggable, Become):
# Variable Attributes
_vars_files = FieldAttribute(isa='list', default=[], priority=99)
_vars_prompt = FieldAttribute(isa='list', default=[], always_post_validate=True)
_vault_password = FieldAttribute(isa='string', always_post_validate=True)
# Role Attributes
_roles = FieldAttribute(isa='list', default=[], priority=90)

Loading…
Cancel
Save