Categorygithub.com/svc-bot-mds/terraform-provider-vmds
repositorypackage
0.1.5
Repository: https://github.com/svc-bot-mds/terraform-provider-vmds.git
Documentation: pkg.go.dev

# Packages

No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author

# README

Terraform Provider for VMware Managed Data Services

About

This repository contains code for the Terraform Provider for VMware Managed Data Services. It supports provisioning of Clusters/Instances of Services (currently only RabbitMQ) and access management of Users on those resources.

Configuration

The Terraform Provider for VMware MDS is available via the Terraform Registry: svc-ops-mds/vmds. To be able to use it successfully, please use below snippet to set up the provider:

terraform {
  required_providers {
    vmds = {
      source = "svc-bot-mds/vmds"
    }
  }
}

provider "vmds" {
  host      = "https://mds-console.example.com" # (required) the URL of hosted MDS
  api_token = "XXXXXX__API_TOKEN__XXXXXX"       # (required) can be generated from CSP > Accounts page
}