skip to Main Content

Terraform Output via Jenkins

I'm unable to find vpc_id and public_subnet.0 in a terraform my-vpc output. Every single time when I put below command: ansible-playbook playbook1.yml -e "vpc_id=$(terraform output my-vpc.vpc_id) vpc_subnet_id=$(terraform output my-vpc.public_subnets.0)" -vvv But it prints terraform output my-vpc -bash-4.2$ terraform output my-vpc…

VIEW QUESTION

When usage with Ansible Handlers – Mysql

having an ansible playbook that will run on all hosts including Debian based & RedHat based servers this will install mariadb on RHEL based servers only doing some configuration changes, start the service once the service started handlers are used…

VIEW QUESTION

Modify .json file using Anisble

My file structure is like below [root@test exim]# cat exim.json { "general": { "max_hourly_email": 0, "max_notify_email": 0, "enable_mail_retry": "1", "mail_retry": 15, "enable_roundcube": "1", "default_quota_val": 32768, "default_quota": "1", "eximmailtrap": "1", "no_local_emailing": "0", "dkim_selector": "x", "disable_ipv6": "0", "custom_mailips": "0", "message_linelength_limit": 2048 I…

VIEW QUESTION
Back To Top
Search