jfrog / terraform-provider-mission-control

Terraform provider to manage JFrog Mission Control
https://jfrog.com/artifactory
Apache License 2.0
0 stars 0 forks source link
artifactory configuration-as-code golang infrastructure-as-code jfrog terraform terraform-provider

Terraform & OpenTofu Acceptance Tests

Terraform Provider for JFrog Mission Control

Quick Start

Create a new Terraform file with missioncontrol resource. Also see sample.tf:

HCL Example

# Required for Terraform 1.0 and later
terraform {
  required_providers {
    missioncontrol = {
      source  = "jfrog/mission-control"
      version = "1.0.0"
    }
  }
}

provider "missioncontrol" {
  // supply JFROG_URL and JFROG_ACCESS_TOKEN as env vars
}

Initialize Terrform:

$ terraform init

Plan (or Apply):

$ terraform plan

Detailed documentation of the resource and attributes are on Terraform Registry.

Versioning

In general, this project follows semver as closely as we can for tagging releases of the package. We've adopted the following versioning policy:

Contributors

See the contribution guide.

License

Copyright (c) 2024 JFrog.

Apache 2.0 licensed, see LICENSE file.