GithubHelp home page GithubHelp logo

Comments (2)

apenella avatar apenella commented on May 16, 2024 2

hi! @abdullah-lt
it was already solved, which version of go-ansible are you using?
I recommend to use last version, though version 0.8.0 already had extravars quoted.

I have updated the example simple-ansibleplaybook as:

func main() {

	ansiblePlaybookConnectionOptions := &options.AnsibleConnectionOptions{
		Connection: "local",
	}

	ansiblePlaybookOptions := &playbook.AnsiblePlaybookOptions{
		Inventory: "127.0.0.1,",
	}

	ansiblePlaybookOptions.AddExtraVar("EC2IP", "127.0.0.1")
	ansiblePlaybookOptions.AddExtraVar("ansible_password", "12345678")

	playbook := &playbook.AnsiblePlaybookCmd{
		Playbooks:         []string{"site.yml", "site2.yml"},
		ConnectionOptions: ansiblePlaybookConnectionOptions,
		Options:           ansiblePlaybookOptions,
	}

	fmt.Println(">>", playbook.String())

	err := playbook.Run(context.TODO())
	if err != nil {
		panic(err)
	}
}

And that is the playbook.String() result.

$ go run simple-ansibleplaybook.go 
>> ansible-playbook  --extra-vars '{"EC2IP":"127.0.0.1","ansible_password":"12345678"}' --inventory 127.0.0.1,  --connection local --user aleix site.yml site2.yml

from go-ansible.

abdullah-lt avatar abdullah-lt commented on May 16, 2024

Hi @apenella
I am using the latest version - v1.1.0. There was a different code issue and I was printing the command in a different way which removed the quotes from the ansible command. Thanks for your response and example.

from go-ansible.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.