Categorygithub.com/uptycslabs/terraform-provider-uptycscspm
modulepackage
0.0.7-beta.2
Repository: https://github.com/uptycslabs/terraform-provider-uptycscspm.git
Documentation: pkg.go.dev

# README

Terraform Provider Uptycs - for CSPM Integration

Requirements

Building The Provider

  1. Clone the repository
  2. Enter the repository directory
  3. Build the provider using the Go install command:
go install

Adding Dependencies

This provider uses Go modules. Please see the Go documentation for the most up to date information about using Go modules.

To add a new dependency github.com/author/dependency to your Terraform provider:

go get github.com/author/dependency
go mod tidy

Then commit the changes to go.mod and go.sum.

Using the provider

terraform {
  required_version = ">= 0.12.21"
  required_providers {
    uptycscspm = {
      source  = "github.com/uptycslabs/uptycscspm"
      version = ">= 0.0.2"
    }
  }
}

resource "uptycscspm_role" "test" {
  profile_name = "default"
  account_id = "123456789012"
  integration_name = "UptycsIntegration"
  upt_account_id = "123456789013"
  external_id = "6a9375c1-47c0-470c-9217-d2f9d2d185f1"
}