No description
  • Go 90.9%
  • HTML 3.3%
  • Shell 3.2%
  • Makefile 2.6%
Find a file
OpenTofu Core Development Team 09540938b7 Apply GitHub workflow changes
2025-11-18 12:25:48 +02:00
.github Apply GitHub workflow changes 2025-11-18 12:25:48 +02:00
ignition Update vendored Ignition to 0.34.0 2019-12-12 13:33:18 +01:00
scripts Fix Changelog Links Script for ignition provider 2017-06-26 09:51:25 -05:00
vendor Update vendored Ignition to 0.34.0 2019-12-12 13:33:18 +01:00
website Merge pull request #58 from obourdon/fix-file-mode 2019-10-31 06:53:16 +01:00
.gitignore Updating Makefile + Add gitignore 2017-06-06 16:27:50 -04:00
.travis.yml Upgrade to Golang 1.13 2019-12-12 13:50:57 +01:00
CHANGELOG.md Cleanup after v1.2.1 release 2019-12-12 13:15:41 +00:00
GNUmakefile make: Add website + website-test targets 2018-04-30 08:53:47 +01:00
go.mod Upgrade to Golang 1.13 2019-12-12 13:50:57 +01:00
go.sum Update vendored Ignition to 0.34.0 2019-12-12 13:33:18 +01:00
LICENSE initial commit 2017-06-05 20:53:59 +00:00
main.go Adapt imports for provider SDK migration. 2019-10-30 23:01:26 +01:00
README.md Merge pull request #31 from MalloZup/readme-note 2019-01-04 20:18:33 +01:00

Terraform Provider

Requirements

  • Terraform 0.10.x
  • Go 1.8 (to build the provider plugin)

Building The Provider

Clone repository to: $GOPATH/src/github.com/terraform-providers/terraform-provider-ignition

$ git clone git@github.com:terraform-providers/terraform-provider-ignition $GOPATH/src/github.com/terraform-providers/terraform-provider-ignition

Enter the provider directory and build the provider

$ cd $GOPATH/src/github.com/terraform-providers/terraform-provider-ignition
$ make build

Using the provider

Fill in for each provider

Developing the Provider

If you wish to work on the provider, you'll first need Go installed on your machine (version 1.8+ is required). You'll also need to correctly setup a GOPATH, as well as adding $GOPATH/bin to your $PATH.

To compile the provider, run make build. This will build the provider and put the provider binary in the $GOPATH/bin directory.

$ make build
...
$ $GOPATH/bin/terraform-provider-ignition
...

In order to test the provider, you can simply run make test.

$ make test

In order to run the full suite of Acceptance tests, run make testacc.

Note: Acceptance tests create real resources.

$ make testacc