From 133b70ff4503be52b007d3abe642d7d7f360b686 Mon Sep 17 00:00:00 2001 From: Carlos Mendible Date: Thu, 5 Jul 2018 22:05:45 +0200 Subject: [PATCH] Added missing type for both template and parameters variables. (#42033) * Added missing type for both template and parameters variables. * changed object to dict --- lib/ansible/modules/cloud/azure/azure_rm_deployment.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/lib/ansible/modules/cloud/azure/azure_rm_deployment.py b/lib/ansible/modules/cloud/azure/azure_rm_deployment.py index 69a7dac8795..5f8fcdadeaa 100644 --- a/lib/ansible/modules/cloud/azure/azure_rm_deployment.py +++ b/lib/ansible/modules/cloud/azure/azure_rm_deployment.py @@ -56,6 +56,7 @@ options: description: - A hash containing the templates inline. This parameter is mutually exclusive with 'template_link'. Either one of them is required if "state" parameter is "present". + type: dict template_link: description: - Uri of file containing the template body. This parameter is mutually exclusive with 'template'. Either one @@ -64,6 +65,7 @@ options: description: - A hash of all the required template variables for the deployment template. This parameter is mutually exclusive with 'parameters_link'. Either one of them is required if "state" parameter is "present". + type: dict parameters_link: description: - Uri of file containing the parameters body. This parameter is mutually exclusive with 'parameters'. Either