mirror of
https://github.com/ansible-collections/community.general.git
synced 2024-09-14 20:13:21 +02:00
additional sample for function app (#55136)
* additional sample for function app * format
This commit is contained in:
parent
b0cc3072dc
commit
21ec3b294f
1 changed files with 23 additions and 11 deletions
|
@ -100,6 +100,18 @@ EXAMPLES = '''
|
||||||
setting1: value1
|
setting1: value1
|
||||||
setting2: value2
|
setting2: value2
|
||||||
|
|
||||||
|
- name: Create container based function app
|
||||||
|
azure_rm_functionapp:
|
||||||
|
resource_group: myResourceGroup
|
||||||
|
name: myFunctionApp
|
||||||
|
storage_account: myStorageAccount
|
||||||
|
plan:
|
||||||
|
resource_group: myResourceGroup
|
||||||
|
name: myAppPlan
|
||||||
|
container_settings:
|
||||||
|
name: httpd
|
||||||
|
registry_server_url: index.docker.io
|
||||||
|
|
||||||
- name: Delete a function app
|
- name: Delete a function app
|
||||||
azure_rm_functionapp:
|
azure_rm_functionapp:
|
||||||
resource_group: myResourceGroup
|
resource_group: myResourceGroup
|
||||||
|
|
Loading…
Reference in a new issue