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: 8 days ago
JSON representation

Terraform Steampipe Cloud provider

Lists

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
```