mirror of
https://github.com/ansible-collections/community.general.git
synced 2024-09-14 20:13:21 +02:00
8a6ae51f90
* add template for az func * (wip) add basic azure functions support * add support to add app settings to azure function * add support for updating based off of app settings * add integration tests and refactor required param * support check mode and add facts module * add test for azure functions facts module * add necessary checks and registrations for web client * fix documentation * change return type from complex to dict * disable azure_rm_functionapp tests until stable * remove dict comprehension for py2.6 * pepe has whitespace tumor
207 lines
6 KiB
Python
207 lines
6 KiB
Python
#!/usr/bin/python
|
|
#
|
|
# Copyright (c) 2016 Thomas Stringer, <tomstr@microsoft.com>
|
|
|
|
# GNU General Public License v3.0+ (see COPYING or https://www.gnu.org/licenses/gpl-3.0.txt)
|
|
|
|
from __future__ import absolute_import, division, print_function
|
|
__metaclass__ = type
|
|
|
|
|
|
ANSIBLE_METADATA = {'metadata_version': '1.1',
|
|
'status': ['preview'],
|
|
'supported_by': 'community'}
|
|
|
|
|
|
DOCUMENTATION = '''
|
|
---
|
|
module: azure_rm_functionapp_facts
|
|
version_added: "2.4"
|
|
short_description: Get Azure Function App facts
|
|
description:
|
|
- Get facts for one Azure Function App or all Function Apps within a resource group
|
|
options:
|
|
name:
|
|
description:
|
|
- Only show results for a specific Function App
|
|
required: false
|
|
default: null
|
|
resource_group:
|
|
description:
|
|
- Limit results to a resource group. Required when filtering by name
|
|
required: false
|
|
default: null
|
|
aliases:
|
|
- resource_group_name
|
|
tags:
|
|
description:
|
|
- Limit results by providing a list of tags. Format tags as 'key' or 'key:value'.
|
|
required: false
|
|
default: null
|
|
|
|
extends_documentation_fragment:
|
|
- azure
|
|
|
|
author:
|
|
- "Thomas Stringer (@tstringer)"
|
|
'''
|
|
|
|
EXAMPLES = '''
|
|
- name: Get facts for one Function App
|
|
azure_rm_functionapp_facts:
|
|
resource_group: ansible-rg
|
|
name: myfunctionapp
|
|
|
|
- name: Get facts for all Function Apps in a resource group
|
|
azure_rm_functionapp_facts:
|
|
resource_group: ansible-rg
|
|
|
|
- name: Get facts for all Function Apps by tags
|
|
azure_rm_functionapp_facts:
|
|
tags:
|
|
- testing
|
|
'''
|
|
|
|
RETURN = '''
|
|
azure_functionapps:
|
|
description: List of Azure Function Apps dicts
|
|
returned: always
|
|
type: list
|
|
example:
|
|
id: /subscriptions/.../resourceGroups/ansible-rg/providers/Microsoft.Web/sites/myfunctionapp
|
|
name: myfunctionapp
|
|
kind: functionapp
|
|
location: East US
|
|
type: Microsoft.Web/sites
|
|
state: Running
|
|
host_names:
|
|
- myfunctionapp.azurewebsites.net
|
|
repository_site_name: myfunctionapp
|
|
usage_state: Normal
|
|
enabled: true
|
|
enabled_host_names:
|
|
- myfunctionapp.azurewebsites.net
|
|
- myfunctionapp.scm.azurewebsites.net
|
|
availability_state: Normal
|
|
host_name_ssl_states:
|
|
- name: myfunctionapp.azurewebsites.net
|
|
ssl_state: Disabled
|
|
host_type: Standard
|
|
- name: myfunctionapp.scm.azurewebsites.net
|
|
ssl_state: Disabled
|
|
host_type: Repository
|
|
server_farm_id: /subscriptions/.../resourceGroups/ansible-rg/providers/Microsoft.Web/serverfarms/EastUSPlan
|
|
reserved: false
|
|
last_modified_time_utc: 2017-08-22T18:54:01.190Z
|
|
scm_site_also_stopped: false
|
|
client_affinity_enabled: true
|
|
client_cert_enabled: false
|
|
host_names_disabled: false
|
|
outbound_ip_addresses: ............
|
|
container_size: 1536
|
|
daily_memory_time_quota: 0
|
|
resource_group: ansible-rg
|
|
default_host_name: myfunctionapp.azurewebsites.net
|
|
'''
|
|
|
|
try:
|
|
from msrestazure.azure_exceptions import CloudError
|
|
except:
|
|
# This is handled in azure_rm_common
|
|
pass
|
|
|
|
from ansible.module_utils.azure_rm_common import AzureRMModuleBase
|
|
|
|
|
|
class AzureRMFunctionAppFacts(AzureRMModuleBase):
|
|
def __init__(self):
|
|
|
|
self.module_arg_spec = dict(
|
|
name=dict(type='str'),
|
|
resource_group=dict(type='str', aliases=['resource_group_name']),
|
|
tags=dict(type='list'),
|
|
)
|
|
|
|
self.results = dict(
|
|
changed=False,
|
|
ansible_facts=dict(azure_functionapps=[])
|
|
)
|
|
|
|
self.name = None
|
|
self.resource_group = None
|
|
self.tags = None
|
|
|
|
super(AzureRMFunctionAppFacts, self).__init__(
|
|
self.module_arg_spec,
|
|
supports_tags=False,
|
|
facts_module=True
|
|
)
|
|
|
|
def exec_module(self, **kwargs):
|
|
|
|
for key in self.module_arg_spec:
|
|
setattr(self, key, kwargs[key])
|
|
|
|
if self.name and not self.resource_group:
|
|
self.fail("Parameter error: resource group required when filtering by name.")
|
|
|
|
if self.name:
|
|
self.results['ansible_facts']['azure_functionapps'] = self.get_functionapp()
|
|
elif self.resource_group:
|
|
self.results['ansible_facts']['azure_functionapps'] = self.list_resource_group()
|
|
else:
|
|
self.results['ansible_facts']['azure_functionapps'] = self.list_all()
|
|
|
|
return self.results
|
|
|
|
def get_functionapp(self):
|
|
self.log('Get properties for Function App {0}'.format(self.name))
|
|
function_app = None
|
|
result = []
|
|
|
|
try:
|
|
function_app = self.web_client.web_apps.get(
|
|
self.resource_group,
|
|
self.name
|
|
)
|
|
except CloudError:
|
|
pass
|
|
|
|
if function_app and self.has_tags(function_app.tags, self.tags):
|
|
result = function_app.as_dict()
|
|
|
|
return [result]
|
|
|
|
def list_resource_group(self):
|
|
self.log('List items')
|
|
try:
|
|
response = self.web_client.web_apps.list_by_resource_group(self.resource_group)
|
|
except Exception as exc:
|
|
self.fail("Error listing for resource group {0} - {1}".format(self.resource_group, str(exc)))
|
|
|
|
results = []
|
|
for item in response:
|
|
if self.has_tags(item.tags, self.tags):
|
|
results.append(item.as_dict())
|
|
return results
|
|
|
|
def list_all(self):
|
|
self.log('List all items')
|
|
try:
|
|
response = self.web_client.web_apps.list_by_resource_group(self.resource_group)
|
|
except Exception as exc:
|
|
self.fail("Error listing all items - {0}".format(str(exc)))
|
|
|
|
results = []
|
|
for item in response:
|
|
if self.has_tags(item.tags, self.tags):
|
|
results.append(item.as_dict())
|
|
return results
|
|
|
|
|
|
def main():
|
|
AzureRMFunctionAppFacts()
|
|
|
|
|
|
if __name__ == '__main__':
|
|
main()
|