项目作者: digipost

项目描述 :
A Terraform provider for the Hitachi Content Platform
高级语言: Go
项目地址: git://github.com/digipost/terraform-provider-hcp.git
创建时间: 2017-08-24T13:33:49Z
项目社区:https://github.com/digipost/terraform-provider-hcp

开源协议:Apache License 2.0

下载


Terraform HCP Provider

Provider for the Hitachi Content Platform.

Uses the HCP Management API to create users and namespaces.

Using the provider

Provider configuration

  1. provider hcp {
  2. mapi_url = "https://finance.hcp.example.com:9090/mapi/tenants/finance"
  3. username = "admin"
  4. password = "password"
  5. }

You can also configure the provider using the following environment variables instead:

  • HCP_MAPI_URL
  • HCP_USERNAME
  • HCP_PASSWORD

hcp_user_account resource

  1. resource "hcp_user_account" "sftp" {
  2. username = "username"
  3. full_name = "full username"
  4. password = "password" // sha512 of this will be stored in state file
  5. }

Requirements

Building The Provider

  1. $ make build

Developing the Provider

See GNUmakefile