Skip to content

770715/terraform-provider-example

Repository files navigation

Terraform Provider Example

This is a Terraform provider for managing example resources.

Requirements

Building The Provider

go build -o terraform-provider-example

Using the Provider

terraform {
  required_providers {
    example = {
      source  = "yourorg/example"
      version = "~> 1.0"
    }
  }
}

provider "example" {
  endpoint = "https://api.example.com"
}

Developing the Provider

If you wish to work on the provider, you'll first need Go installed.

To compile the provider, run:

make build

To install the provider locally for testing:

make install

To run tests:

make test

To run acceptance tests:

make testacc

License

MPL-2.0

About

No description, website, or topics provided.

Resources

License

Stars

Watchers

Forks

Packages

 
 
 

Contributors