Remove dead 'vault_password' play attribute (#41847)

This commit is contained in:
Andrew Gaffney 2018-07-25 12:01:10 -05:00 committed by GitHub
parent 9bf22309b3
commit dbff49dee0
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 0 additions and 2 deletions

View file

@ -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.

View file

@ -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)