Alexei Znamensky
62fa3e6f2b
remove trailing comma in dict(parameters,) ( #10711 )
...
* remove trailing comma in dict(parameters,)
* add changelog frag
2025-08-23 19:13:20 +02:00
Alexei Znamensky
15d3ea123d
remove common return values from docs ( #10485 )
...
* remove common return values from docs
* pacman: add note about version added of RV
2025-07-28 18:46:02 +02:00
Alexei Znamensky
7b05484d8f
doc style adjustments: modules [rtuvx]* ( #10466 )
...
EOL CI / EOL Sanity (Ⓐ2.16) (push) Waiting to run
EOL CI / EOL Units (Ⓐ2.16+py2.7) (push) Waiting to run
EOL CI / EOL Units (Ⓐ2.16+py3.11) (push) Waiting to run
EOL CI / EOL Units (Ⓐ2.16+py3.6) (push) Waiting to run
EOL CI / EOL I (Ⓐ2.16+alpine3+py:azp/posix/1/) (push) Waiting to run
EOL CI / EOL I (Ⓐ2.16+alpine3+py:azp/posix/2/) (push) Waiting to run
EOL CI / EOL I (Ⓐ2.16+alpine3+py:azp/posix/3/) (push) Waiting to run
EOL CI / EOL I (Ⓐ2.16+fedora38+py:azp/posix/1/) (push) Waiting to run
EOL CI / EOL I (Ⓐ2.16+fedora38+py:azp/posix/2/) (push) Waiting to run
EOL CI / EOL I (Ⓐ2.16+fedora38+py:azp/posix/3/) (push) Waiting to run
EOL CI / EOL I (Ⓐ2.16+opensuse15+py:azp/posix/1/) (push) Waiting to run
EOL CI / EOL I (Ⓐ2.16+opensuse15+py:azp/posix/2/) (push) Waiting to run
EOL CI / EOL I (Ⓐ2.16+opensuse15+py:azp/posix/3/) (push) Waiting to run
nox / Run extra sanity tests (push) Waiting to run
* doc style adjustments: modules r*
* doc style adjustments: modules t*
* doc style adjustments: modules u*
* doc style adjustments: modules v*
* doc style adjustments: modules x*
* Update plugins/modules/redis_data.py
Co-authored-by: Felix Fontein <felix@fontein.de>
---------
Co-authored-by: Felix Fontein <felix@fontein.de>
2025-07-27 15:59:49 +02:00
ujstor
1db255ff2d
Feat/terraform no color parameter ( #10154 )
...
* no_color
* fix docs and duplicating
* fix indentation
* changelog fragmen
* Update changelogs/fragments/10154-terraform_no_color_paramater.yml
Co-authored-by: Alexei Znamensky <103110+russoz@users.noreply.github.com>
---------
Co-authored-by: Alexei Znamensky <103110+russoz@users.noreply.github.com>
2025-05-24 21:04:21 +02:00
Alexei Znamensky
695b1abc8d
st*: style adjustments ( #9516 )
...
* st*: style adjustments
* lien lenght adjustments
2025-01-03 20:00:45 +01:00
Alexei Znamensky
2f82bd8ece
Adjust doc style ( #9435 )
...
* adjust doc style
* Update plugins/modules/swupd.py
Co-authored-by: Felix Fontein <felix@fontein.de>
* restore sanity
---------
Co-authored-by: Felix Fontein <felix@fontein.de>
2024-12-29 00:25:12 +01:00
Alexei Znamensky
6e84c1375e
t*: normalize docs ( #9339 )
...
* t*: normalize docs
* Apply suggestions from code review
Co-authored-by: Felix Fontein <felix@fontein.de>
* break long line to regain sanity
---------
Co-authored-by: Felix Fontein <felix@fontein.de>
2024-12-24 11:59:56 +01:00
Parsa Yousefi
0a35eb2dda
terraform: fix diff when state is absent ( #7963 )
2024-02-16 13:50:58 +01:00
Parsa Yousefi
0dc891bf37
terraform: support diff for resource_changes ( #7896 )
2024-01-29 18:57:18 +01:00
Yann Soubeyrand
af5da7d412
fix(modules/terraform): handle multiline strings correctly in complex variables ( #7535 )
2023-11-24 21:30:31 +01:00
Felix Fontein
58705d5ac3
More docs cleanup ( #7552 )
...
* More docs improvements.
* timezone: mention which versions of AIX are supported.
2023-11-22 22:45:28 +01:00
Kosala Atapattu
7bf24eeb84
Fixing incorrect string encapsulation for -backend-config. ( #7301 )
...
* Fixing incorrect string encapsulation for -backend-config. Removing shlex_quote.
* Adding change log fragemnt for bugfix:
- "terraform module - prevents `-backend-config` option double encapsulating with `shlex_quote` function. (https://github.com/ansible-collections/community.general/pull/7301 )."
* Update changelogs/fragments/7301-fix-backend-config-string-encapsulation.yml
Co-authored-by: Felix Fontein <felix@fontein.de>
---------
Co-authored-by: Felix Fontein <felix@fontein.de>
2023-09-24 21:20:10 +02:00
Felix Fontein
ccdcf70d69
Use semantic markup (modules t-z) ( #6698 )
...
* Use semantic markup.
* Fix escaping.
2023-06-18 19:48:01 +02:00
Max Juhlke
6558c9981f
fix typo in terraform
docs ( #6503 )
...
fix typo
The [Docs](https://docs.ansible.com/ansible/latest/collections/community/general/terraform_module.html ) have a typo in the examples. `camplex_vars` should be spelled `complex_vars`.
Since many people are copy-and-pasting from docs and modify them to their needs this typo is an annoyance for users.
2023-05-08 19:46:10 +02:00
Felix Fontein
4e57240e9f
terraform: fix warn() call ( #6497 )
...
Fix warn() call.
2023-05-07 20:57:54 +02:00
LanceNero
bf780ea738
terraform: remote state file exists check issue ( #6296 )
...
* remote state file exists check
In the official CLI implementation of Terraform, if the state file does not exist, a new one will be created, and there is no need to check that the state file already exists and with an error if file not exists.
```bash
# Test command
terraform apply -state test.tfstate. # if state file not exists ,terraform will create a new one
terraform destroy -state test1.tfstate ### Terraform will not throw any error, the command will succeed execute, only report no resource has destroy
```
* Update terraform.py
add 1 blank line to function end
* Create 6296-LanceNero-Terraform_statefile_check
remove file exists check (https://github.com/ansible-collections/community.general/pull/6296 )
* resolve if case issue
* Add blank line
* Update 6296-LanceNero-Terraform_statefile_check
* Update changelogs/fragments/6296-LanceNero-Terraform_statefile_check
Co-authored-by: Alexei Znamensky <103110+russoz@users.noreply.github.com>
* update code style
Co-authored-by: Alexei Znamensky <103110+russoz@users.noreply.github.com>
* Update suffix to correct CI issue
* Update Code Style
* Update bug-fix to feature release
---------
Co-authored-by: Alexei Znamensky <103110+russoz@users.noreply.github.com>
2023-04-13 06:55:52 +02:00
Felix Fontein
4b262e39f0
Add attributes to more modules (4/4) ( #5968 )
...
* Add attributes to more modules.
* Adjust indentation.
Co-authored-by: Kristian Heljas <11139388+kristianheljas@users.noreply.github.com>
---------
Co-authored-by: Kristian Heljas <11139388+kristianheljas@users.noreply.github.com>
2023-02-20 17:30:53 +01:00
Felix Fontein
b1d9507cd2
Fix pylint errors ( #5933 )
...
* Fix pylint errors.
* Also adjust to https://github.com/ansible/ansible/pull/79909 .
2023-02-04 17:05:08 +01:00
Kristian Heljas
44172ddaa6
Add -no-color argument to terraform validation ( #5843 )
2023-01-16 22:54:07 +01:00
Teodor Janez Podobnik
fc2b1aac4a
terraform: bugfix: init command when default workspace doesn't exists ( #5735 )
...
* feat: init when default workspace doesn't exists
* doc: add changelogs fragment and docs update
* fix: changelog formating fix
2023-01-07 10:24:32 +01:00
Felix Fontein
b531ecdc9b
Unflatmap community.general ( #5461 )
...
* Move files.
* Update imports and references.
* Move wrongly placed files.
* Reverse redirects, deprecate long → short name redirects.
* Simplify contribution guidelines for new modules.
* Rewrite BOTMETA.
* Add changelog fragment.
* Fix ignore.txt files.
2022-11-02 20:42:29 +00:00
Felix Fontein
7743ecd776
Replace symlinks with meta/runtime.yml redirects. ( #4562 )
2022-04-26 20:33:13 +02:00
Brian Coca
8f90360d49
make collection usable with current ansible vers ( #9 )
2020-03-11 14:10:38 +00:00