Skip to content

Commit

Permalink
Release version 1.3.0 (#119)
Browse files Browse the repository at this point in the history
  • Loading branch information
gravesm authored May 7, 2024
1 parent cccd28b commit bb83182
Show file tree
Hide file tree
Showing 8 changed files with 28 additions and 10 deletions.
13 changes: 13 additions & 0 deletions CHANGELOG.rst
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,19 @@ The Terraform Provider for Ansible Release Notes

.. contents:: Topics

v1.3.0
======

Minor Changes
-------------

- resource/ansible_playbook - Provider should failed with proper message when ansible is not installed (https://github.com/ansible/terraform-provider-ansible/issues/35).

Bugfixes
--------

- ensure extra vars are quoted (https://github.com/ansible/terraform-provider-ansible/pull/57).

v1.2.0
======

Expand Down
12 changes: 12 additions & 0 deletions changelogs/changelog.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -22,3 +22,15 @@ releases:
- update_dependencies.yml
- use_sdkv2.yml
release_date: '2024-02-21'
1.3.0:
changes:
bugfixes:
- ensure extra vars are quoted (https://github.com/ansible/terraform-provider-ansible/pull/57).
minor_changes:
- resource/ansible_playbook - Provider should failed with proper message when
ansible is not installed (https://github.com/ansible/terraform-provider-ansible/issues/35).
fragments:
- 20240410-proper-failure-message-when-ansible-is-not-installed.yml
- quote-extra-vars.yml
- update_dependencies.yml
release_date: '2024-05-07'

This file was deleted.

2 changes: 0 additions & 2 deletions changelogs/fragments/quote-extra-vars.yml

This file was deleted.

2 changes: 0 additions & 2 deletions changelogs/fragments/update_dependencies.yml

This file was deleted.

2 changes: 1 addition & 1 deletion docs/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ Use the navigation to the left to read about the available resources.
terraform {
required_providers {
ansible = {
version = "~> 1.2.0"
version = "~> 1.3.0"
source = "ansible/ansible"
}
}
Expand Down
2 changes: 1 addition & 1 deletion docs/resources/playbook.md
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ resource "ansible_playbook" "playbook" {
- `force_handlers` (Boolean) If 'true', run handlers even if a task fails.
- `groups` (List of String) List of desired groups of hosts on which the playbook will be executed.
- `ignore_playbook_failure` (Boolean) This parameter is good for testing. Set to 'true' if the desired playbook is meant to fail, but still want the resource to run successfully.
- `limit` (List of String) List of hosts to exclude from the playbook execution.
- `limit` (List of String) List of hosts to include in playbook execution.
- `replayable` (Boolean) If 'true', the playbook will be executed on every 'terraform apply' and with that, the resource will be recreated. If 'false', the playbook will be executed only on the first 'terraform apply'. Note, that if set to 'true', when doing 'terraform destroy', it might not show in the destroy output, even though the resource still gets destroyed.
- `tags` (List of String) List of tags of plays and tasks to run.
- `timeouts` (Block, Optional) (see [below for nested schema](#nestedblock--timeouts))
Expand Down
2 changes: 1 addition & 1 deletion examples/provider/provider.tf
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
terraform {
required_providers {
ansible = {
version = "~> 1.2.0"
version = "~> 1.3.0"
source = "ansible/ansible"
}
}
Expand Down

0 comments on commit bb83182

Please sign in to comment.