Skip to content

digipost/terraform-provider-hcp

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

33 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Terraform HCP Provider

Provider for the Hitachi Content Platform.

Uses the HCP Management API to create users and namespaces.

Using the provider

Provider configuration

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

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

  • HCP_MAPI_URL
  • HCP_USERNAME
  • HCP_PASSWORD

hcp_user_account resource

resource "hcp_user_account" "sftp" {
  username = "username" 
  full_name = "full username"
  password = "password" // sha512 of this will be stored in state file
}

Requirements

  • Terraform 0.10.2
  • Go 1.8 (to build the provider plugin)

Building The Provider

$ make build

Developing the Provider

See GNUmakefile

About

A Terraform provider for the Hitachi Content Platform

Topics

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published