ecs_taskdefinition containers
param should be a list of dict instead of a list of string
#243
Labels
affects_2.10
bug
This issue/PR relates to a bug
module
module
needs_triage
plugins
plugin (any type)
python3
traceback
SUMMARY
https://github.com/ansible-collections/community.aws/blob/1.2.0/plugins/modules/ecs_taskdefinition.py#L324
This parameter should be a list of dict objects as it's treated like one through out the module.
ISSUE TYPE
COMPONENT NAME
ecs_taskdefinition
ANSIBLE VERSION
CONFIGURATION
OS / ENVIRONMENT
Mac
STEPS TO REPRODUCE
Run any example in the
ecs_taskdefinition
moduleEXPECTED RESULTS
It doesn't fail.
ACTUAL RESULTS
It fails when interpreting the first item in the list as dict using
.get(...)
, but it's actually a string variable.https://github.com/ansible-collections/community.aws/blob/main/plugins/modules/ecs_taskdefinition.py#L353
The text was updated successfully, but these errors were encountered: