Skip to content

Commit

Permalink
Bump ansible to v2.16 (#1758)
Browse files Browse the repository at this point in the history
  • Loading branch information
xuzhang3 authored Nov 15, 2024
1 parent ae44f9e commit 5aea9e4
Show file tree
Hide file tree
Showing 5 changed files with 6 additions and 5 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ It is recommended to run ansible in [Virtualenv](https://virtualenv.pypa.io/en/l

## Requirements

- ansible version >= 2.15
- ansible version >= 2.16

To install Azure collection hosted in Galaxy:

Expand Down
2 changes: 1 addition & 1 deletion meta/runtime.yml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
---
requires_ansible: '>=2.15.0'
requires_ansible: '>=2.16.0'
action_groups:
all:
- azure.azcollection.azure_rm_accesstoken_info
Expand Down
1 change: 1 addition & 0 deletions plugins/modules/azure_rm_keyvaultsecret.py
Original file line number Diff line number Diff line change
Expand Up @@ -209,6 +209,7 @@ def exec_module(self, **kwargs):
if not self.check_mode:
# Create secret
if self.state == 'present' and changed:
status = 'Created'
if self.get_delete_secret(self.secret_name):
if self.recover_if_need:
results['secret_id'] = self.recover_delete_secret(self.secret_name)
Expand Down
4 changes: 2 additions & 2 deletions pr-pipelines.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ parameters:
- name: PYTHON_VER
displayName: 'Python Version'
type: string
default: "3.9"
default: "3.10"
values:
- "2.7"
- "3.6"
Expand All @@ -13,7 +13,7 @@ parameters:
- name: ANSIBLE_VER
displayName: 'Ansible Version'
type: string
default: "2.15"
default: "2.16"
values:
- "2.9"
- "2.10"
Expand Down
2 changes: 1 addition & 1 deletion release-pipelines.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ pool:
steps:
- script: |
pip install wheel
pip install ansible==v2.15.0
pip install ansible==v2.16.0
ansible --version
displayName: 'install ansible'
Expand Down

0 comments on commit 5aea9e4

Please sign in to comment.