All Projects → hashicorp → terraform-provider-external

hashicorp / terraform-provider-external

Licence: MPL-2.0 license
Utility provider that exists to provide an interface between Terraform and external programs. Useful for integrating Terraform with a system for which a first-class provider does not exist.

Programming Languages

go
31211 projects - #10 most used programming language
Makefile
30231 projects
HCL
1544 projects

Projects that are alternatives of or similar to terraform-provider-external

Terraform Provider Ibm
Terraform on IBM provider https://cloud.ibm.com/docs/ibm-cloud-provider-for-terraform?topic=ibm-cloud-provider-for-terraform-getting-started
Stars: ✭ 210 (+54.41%)
Mutual labels:  terraform-provider
Terraform Provider Auth0
Auth0 Terraform Provider
Stars: ✭ 252 (+85.29%)
Mutual labels:  terraform-provider
nuxt-interpolation
Nuxt.js module as directive for binding every link to catch the click event, and if it's a relative link router will push.
Stars: ✭ 38 (-72.06%)
Mutual labels:  external
Terraform Provider Datadog
Terraform Datadog provider
Stars: ✭ 213 (+56.62%)
Mutual labels:  terraform-provider
Terraform Provider Unifi
Terraform provider for Unifi 📡
Stars: ✭ 239 (+75.74%)
Mutual labels:  terraform-provider
HAPIH-2
API for supporting C++14 external memory hacking. Complete redesign from HAPIH
Stars: ✭ 18 (-86.76%)
Mutual labels:  external
Terraform Provider Azurerm
Terraform provider for Azure Resource Manager
Stars: ✭ 3,007 (+2111.03%)
Mutual labels:  terraform-provider
terraform-provider-tsuru
Terraform provider for tsuru
Stars: ✭ 17 (-87.5%)
Mutual labels:  terraform-provider
Terraform Provider Vault
Terraform Vault provider
Stars: ✭ 244 (+79.41%)
Mutual labels:  terraform-provider
sonar-gerrit-plugin
Jenkins plugin for posting SonarQube issues as Gerrit review comments
Stars: ✭ 21 (-84.56%)
Mutual labels:  external
Terraform Provider Openstack
Terraform OpenStack provider
Stars: ✭ 225 (+65.44%)
Mutual labels:  terraform-provider
Terraform Provider Virtualbox
VirtualBox provider for Terraform
Stars: ✭ 239 (+75.74%)
Mutual labels:  terraform-provider
ExSharp-Base
External League of Legends Base
Stars: ✭ 128 (-5.88%)
Mutual labels:  external
Terraform Provider Cloudflare
Cloudflare Terraform Provider
Stars: ✭ 208 (+52.94%)
Mutual labels:  terraform-provider
CFX-BYPASS
Bypass it, you won't be Banned when playing cheats 2022
Stars: ✭ 18 (-86.76%)
Mutual labels:  external
Terraform Provider Sops
A Terraform provider for reading Mozilla sops files
Stars: ✭ 206 (+51.47%)
Mutual labels:  terraform-provider
pengWin
An external cheat for the Linux version of Counter-Strike Global Offensive
Stars: ✭ 28 (-79.41%)
Mutual labels:  external
terraform-provider-mysql
Terraform MySQL provider – This Terraform provider is archived per our provider archiving process: https://terraform.io/docs/internals/archiving.html
Stars: ✭ 59 (-56.62%)
Mutual labels:  terraform-provider
babel-collect-imports
Recursively collect all the internal and external dependencies from an entry point
Stars: ✭ 33 (-75.74%)
Mutual labels:  external
CSGO
A CSGO "base" with aimbot, BSP parsing, bunnyhop, triggerbot, aimassist, no flash and walkbot, glow esp
Stars: ✭ 80 (-41.18%)
Mutual labels:  external

Terraform Provider: External

The external provider is a special provider that exists to provide an interface between Terraform and external programs. Using this provider, it is possible to write separate programs that can participate in the Terraform workflow by implementing a specific protocol.

Requirements

Documentation, questions and discussions

Official documentation on how to use this provider can be found on the Terraform Registry. In case of specific questions or discussions, please use the HashiCorp Terraform Providers Discuss forums, in accordance with HashiCorp Community Guidelines.

We also provide:

  • Support page for help when using the provider
  • Contributing guidelines in case you want to help this project

Compatibility

Compatibility table between this provider, the Terraform Plugin Protocol version it implements, and Terraform:

External Provider Terraform Plugin Protocol Terraform
>= 2.0.x 5 >= 0.12
>= 1.1.x 4 and 5 >= 0.12
<= 1.x.x 4 <= 0.12

Details can be found querying the Registry API that return all the details about which version are currently available for a particular provider. Here are the details for Time (JSON response).

Development

Building

  1. git clone this repository and cd into its directory
  2. make will trigger the Golang build

The provided GNUmakefile defines additional commands generally useful during development, like for running tests, generating documentation, code formatting and linting. Taking a look at it's content is recommended.

Testing

In order to test the provider, you can run

  • make test to run provider tests
  • make testacc to run provider acceptance tests

It's important to note that acceptance tests (testacc) will actually spawn terraform and the provider. Read more about they work on the official page.

Generating documentation

This provider uses terraform-plugin-docs to generate documentation and store it in the docs/ directory. Once a release is cut, the Terraform Registry will download the documentation from docs/ and associate it with the release version. Read more about how this works on the official page.

Use make generate to ensure the documentation is regenerated with any changes.

Using a development build

If running tests and acceptance tests isn't enough, it's possible to set up a local terraform configuration to use a development builds of the provider. This can be achieved by leveraging the Terraform CLI configuration file development overrides.

First, use make install to place a fresh development build of the provider in your ${GOBIN} (defaults to ${GOPATH}/bin or ${HOME}/go/bin if ${GOPATH} is not set). Repeat this every time you make changes to the provider locally.

Then, setup your environment following these instructions to make your local terraform use your local build.

Testing GitHub Actions

This project uses GitHub Actions to realize its CI.

Sometimes it might be helpful to locally reproduce the behaviour of those actions, and for this we use act. Once installed, you can simulate the actions executed when opening a PR with:

# List of workflows for the 'pull_request' action
$ act -l pull_request

# Execute the workflows associated with the `pull_request' action 
$ act pull_request

Releasing

The release process is automated via GitHub Actions, and it's defined in the Workflow release.yml.

Each release is cut by pushing a semantically versioned tag to the default branch.

License

Mozilla Public License v2.0

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].