Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Bump ansible to v2.16 #1758

Merged
merged 2 commits into from
Nov 15, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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