Skip to content

Latest commit

 

History

History
executable file
·
37 lines (30 loc) · 1.05 KB

File metadata and controls

executable file
·
37 lines (30 loc) · 1.05 KB

Terraform Provider for Prisma Cloud Compute

This is a community-driven fork of the official Prisma Cloud Compute provider with some extra sauce.

You can find the Prisma Cloud Compute provider in the Terraform Registry.

Basic setup

terraform {
  required_providers {
    prismacloudcompute = {
      source  = "hi-artem/prismacloudcompute"
      version = "0.8.1"
    }
  }
}

provider "prismacloudcompute" {
  # Configure provider inline
  #
  console_url = "https://foo.bar.com"
  username = "myUsername"
  password = "myPassword"

  # Or you can use file
  #
  # config_file = "creds.json"
}

Complete documentation can be found in the marketplace listing.

Contributing

Contributions are welcome! Please read the contributing guide for more information.

Support

Please read our support document for details on how to get support for this project.