This providers allows you to use chromedp in terraform in form of recipes.
install
command:go install
Please refer do examples/.
If you wish to work on the provider, you'll first need Go installed on your machine (see Requirements above).
To compile the provider, run go install
. This will build the provider and put the provider binary in the $GOPATH/bin
directory.
To use provider in sample terraform code ~/.terraformrc
must be edited:
provider_installation {
dev_overrides {
"hashicorp.com/eliastor/chromedp" = "<your go bin path>"
}
direct {}
}
To generate or update documentation, run go generate
or make doc-gen
.
In order to run the full suite of Acceptance tests, run make test
.
make test