Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/turbot/terraform-provider-steampipecloud
Terraform Steampipe Cloud provider
https://github.com/turbot/terraform-provider-steampipecloud
deprecated steampipe steampipe-cloud terraform terraform-provider
Last synced: 2 days ago
JSON representation
Terraform Steampipe Cloud provider
- Host: GitHub
- URL: https://github.com/turbot/terraform-provider-steampipecloud
- Owner: turbot
- License: mpl-2.0
- Archived: true
- Created: 2021-12-01T16:33:11.000Z (almost 3 years ago)
- Default Branch: main
- Last Pushed: 2023-07-28T07:54:01.000Z (over 1 year ago)
- Last Synced: 2024-08-02T05:10:21.710Z (3 months ago)
- Topics: deprecated, steampipe, steampipe-cloud, terraform, terraform-provider
- Language: Go
- Homepage: https://registry.terraform.io/providers/turbot/steampipecloud/latest
- Size: 262 KB
- Stars: 7
- Watchers: 9
- Forks: 1
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
- Changelog: CHANGELOG.md
- License: LICENSE
Awesome Lists containing this project
README
# :warning: DEPRECATED
The Steampipe Cloud provider has been deprecated. Please use the [Turbot Pipes provider](https://registry.terraform.io/providers/turbot/pipes) instead. This was part of our [renaming](https://turbot.com/blog/2023/07/introducing-turbot-guardrails-and-pipes) of Steampipe Cloud to Turbot Pipes.
---
# Terraform Steampipe Cloud provider- Terraform: https://www.terraform.io
- Steampipe: https://steampipe.io
- Steampipe Cloud: https://cloud.steampipe.io
- Community: [Steampipe Slack](https://steampipe.io/community/join)## Requirements
- [Terraform](https://www.terraform.io/downloads.html) 0.10.x
- [Go](https://golang.org/doc/install) 1.14 (to build the provider plugin)## Building The Provider
Clone repository to: `$GOPATH/src/github.com/turbot/terraform-provider-steampipecloud`
```sh
$ export GOPATH=$(go env GOPATH)
$ mkdir -p $GOPATH/src/github.com/turbot; cd $GOPATH/src/github.com/turbot
$ git clone [email protected]:turbot/terraform-provider-steampipecloud
```Enter the provider directory and build the provider
```sh
$ cd $GOPATH/src/github.com/turbot/terraform-provider-steampipecloud
$ make build
```## Using the provider
If you're building the provider, follow the instructions to [install it as a plugin.](https://www.terraform.io/docs/plugins/basics.html#installing-a-plugin) After placing it into your plugins directory, run `terraform init` to initialize it.
Further [usage documentation is available on the Terraform website](https://registry.terraform.io/providers/turbot/steampipecloud/latest/docs).
## Developing the Provider
If you wish to work on the provider, you'll first need [Go](http://www.golang.org) installed on your machine (version 1.8+ is _required_). You'll also need to correctly setup a [GOPATH](http://golang.org/doc/code.html#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.
```sh
$ make build
go build -o bin/terraform-provider-steampipecloud_0.0.1 -ldflags="-X github.com/turbot/terraform-provider-steampipecloud/version.ProviderVersion=0.0.1"
```In order to test the provider, you can simply run `make test`.
```sh
$ make test
```In order to run the full suite of Acceptance tests, run `make testacc`.
_Note:_ Acceptance tests create real resources, and often cost money to run.
```sh
$ make testacc
```