Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/abtris/terraform-provider-hashicups-pf
https://github.com/abtris/terraform-provider-hashicups-pf
Last synced: about 1 month ago
JSON representation
- Host: GitHub
- URL: https://github.com/abtris/terraform-provider-hashicups-pf
- Owner: abtris
- Created: 2023-04-27T09:17:49.000Z (over 1 year ago)
- Default Branch: master
- Last Pushed: 2024-08-13T17:38:51.000Z (3 months ago)
- Last Synced: 2024-08-13T20:59:58.805Z (3 months ago)
- Language: Go
- Size: 140 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 4
-
Metadata Files:
- Readme: README.md
- Code of conduct: .github/CODE_OF_CONDUCT.md
Awesome Lists containing this project
README
# Terraform Provider Hashicups
This repo is a companion repo to the [Call APIs with Terraform Providers](https://learn.hashicorp.com/collections/terraform/providers) Learn collection.
In the collection, you will use the HashiCups provider as a bridge between Terraform and the HashiCups API. Then, extend Terraform by recreating the HashiCups provider. By the end of this collection, you will be able to take these intuitions to create your own custom Terraform provider.
## Build provider
Run the following command to build the provider
```shell
$ go build -o terraform-provider-hashicups
```## Test sample configuration
First, build and install the provider.
```shell
$ make install
```Then, navigate to the `examples` directory.
```shell
$ cd examples
```Run the following command to initialize the workspace and apply the sample configuration.
```shell
$ terraform init && terraform apply
```