-
Notifications
You must be signed in to change notification settings - Fork 13
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* Update lint and deps * Move playbook vars into playbook dir * Fix include_role * Remove tag * Added create vpc playbook * Correct role paths * Remove unneeded var * Added changelog
- Loading branch information
1 parent
64bb2d8
commit 5453e29
Showing
31 changed files
with
283 additions
and
63 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,14 +1,21 @@ | ||
--- | ||
profile: basic | ||
quiet: false | ||
verbosity: 1 | ||
|
||
exclude_paths: | ||
- .cache/ | ||
- .github/ | ||
- test | ||
- changelogs | ||
|
||
enable_list: | ||
- empty-string-compare # opt-in | ||
- no-log-password # opt-in | ||
- no-same-owner # opt-in | ||
- empty-string-compare | ||
- no-log-password | ||
- no-same-owner | ||
- yaml | ||
|
||
skip_list: | ||
- role-name[path] | ||
- galaxy[no-changelog] | ||
- package-latest | ||
- yaml[line-length] | ||
- var-naming[no-role-prefix] |
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,28 @@ | ||
========================================================= | ||
lab.azure.azure_infrastructure_config_demos Release Notes | ||
========================================================= | ||
|
||
.. contents:: Topics | ||
|
||
This changelog describes changes after version 2.0.0. | ||
|
||
v3.0.0 | ||
====== | ||
|
||
Release Summary | ||
--------------- | ||
|
||
Updated the collection to match validated patterns. | ||
|
||
Major Changes | ||
------------- | ||
|
||
- Moved playbooks into playbooks folder so that playbooks may be called from `namespace.collection.playbook` syntax. | ||
- Updated Ansible Lint config. | ||
|
||
Breaking Changes / Porting Guide | ||
-------------------------------- | ||
|
||
- Playbook names have changed. | ||
- Playbook paths have changed. | ||
- Playbooks now reference role by FQRN. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,19 @@ | ||
objects: | ||
role: {} | ||
plugins: | ||
become: {} | ||
cache: {} | ||
callback: {} | ||
cliconf: {} | ||
connection: {} | ||
filter: {} | ||
httpapi: {} | ||
inventory: {} | ||
lookup: {} | ||
module: {} | ||
netconf: {} | ||
shell: {} | ||
strategy: {} | ||
test: {} | ||
vars: {} | ||
version: 3.0.0 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,16 @@ | ||
ancestor: 2.0.0 | ||
releases: | ||
3.0.0: | ||
changes: | ||
breaking_changes: | ||
- Playbook names have changed. | ||
- Playbook paths have changed. | ||
- Playbooks now reference role by FQRN. | ||
major_changes: | ||
- Moved playbooks into playbooks folder so that playbooks may be called from | ||
`namespace.collection.playbook` syntax. | ||
- Updated Ansible Lint config. | ||
release_summary: Updated the collection to match validated patterns. | ||
fragments: | ||
- version-3.yml | ||
release_date: "2023-11-06" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,32 @@ | ||
changelog_filename_template: ../CHANGELOG.rst | ||
changelog_filename_version_depth: 0 | ||
changes_file: changelog.yaml | ||
changes_format: combined | ||
ignore_other_fragment_extensions: true | ||
keep_fragments: false | ||
mention_ancestor: true | ||
new_plugins_after_name: removed_features | ||
notesdir: fragments | ||
prelude_section_name: release_summary | ||
prelude_section_title: Release Summary | ||
sanitize_changelog: true | ||
sections: | ||
- - major_changes | ||
- Major Changes | ||
- - minor_changes | ||
- Minor Changes | ||
- - breaking_changes | ||
- Breaking Changes / Porting Guide | ||
- - deprecated_features | ||
- Deprecated Features | ||
- - removed_features | ||
- Removed Features (previously deprecated) | ||
- - security_fixes | ||
- Security Fixes | ||
- - bugfixes | ||
- Bugfixes | ||
- - known_issues | ||
- Known Issues | ||
title: lab.azure.azure_infrastructure_config_demos | ||
trivial_section_name: trivial | ||
use_fqcn: true |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,7 @@ | ||
--- | ||
namespace: aws | ||
name: infrastructure_config_demos | ||
version: 2.1.0 | ||
namespace: lab | ||
name: aws_infrastructure_config_demos | ||
version: 3.0.0 | ||
readme: README.md | ||
authors: | ||
- Scott Harwell <[email protected]> | ||
|
@@ -13,9 +13,9 @@ tags: | |
- "cloud" | ||
- "aws" | ||
dependencies: | ||
amazon.aws: ">=6.2.0" | ||
amazon.aws: ">=6.5.0" | ||
amazon.cloud: ">=0.4.0" | ||
community.aws: ">=6.1.0" | ||
community.aws: ">=6.3.0" | ||
repository: https://github.com/ansible-content-lab/aws.infrastructure_config_demos | ||
documentation: https://github.com/ansible-content-lab/aws.infrastructure_config_demos | ||
homepage: https://github.com/ansible-content-lab/aws.infrastructure_config_demos | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.