Hi everyone,
I was working on rds subnet group , however ansible says it is not able to find the module
`
- name: Create Subnet Group for RDS Instances
local_action:
module: rds_subnet_group
state: present
region: us-east-1
vpc_id: “{{ dev_vpc }}”
name: rds_sg
description: Subnet group for RDS instances
subnets: - “{{ us_east_1b }}”
- “{{ us_east_1d }}”
`
The error I am getting is something like this,
`
fatal: [localhost → 127.0.0.1] => module rds_subnet_group not found in configured module paths
FATAL: all hosts have already failed – aborting
PLAY RECAP ********************************************************************
to retry, use: --limit @/home/rahul/securitygroup.retry
localhost : ok=10 changed=5 unreachable=1 failed=0
`
Can some-one point out if I am doing something wrong. ??
Thank you