mirror of
https://github.com/ansible-collections/community.general.git
synced 2025-05-31 13:29:08 -07:00
fixing disabled azure sanity tests (#40519)
* fixing azure sanity tests * fixing sanity * fixing some tags issues * removed unnecessary things from managed disk * fixed location problem * more sanity fixes * sanity test fixes * final sanity fixes? * final fixes again * undo changes related to container instance * removed container instance * readd again * fixed stupid mistake * removed _azure from changes * one more mistake
This commit is contained in:
parent
9bc5dd5d09
commit
8e38668285
30 changed files with 123 additions and 126 deletions
|
@ -201,10 +201,10 @@ class AzureRMStorageBlob(AzureRMModuleBase):
|
|||
blob=dict(type='str', aliases=['blob_name']),
|
||||
blob_type=dict(type='str', default='block', choices=['block', 'page']),
|
||||
container=dict(required=True, type='str', aliases=['container_name']),
|
||||
dest=dict(type='path'),
|
||||
dest=dict(type='path', aliases=['destination']),
|
||||
force=dict(type='bool', default=False),
|
||||
resource_group=dict(required=True, type='str', aliases=['resource_group_name']),
|
||||
src=dict(type='str'),
|
||||
src=dict(type='str', aliases=['source']),
|
||||
state=dict(type='str', default='present', choices=['absent', 'present']),
|
||||
public_access=dict(type='str', choices=['container', 'blob']),
|
||||
content_type=dict(type='str'),
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue