Provider for the Hitachi Content Platform.
Uses the HCP Management API to create users and namespaces.
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
resource "hcp_user_account" "sftp" {
username = "username"
full_name = "full username"
password = "password" // sha512 of this will be stored in state file
}
$ make build
See GNUmakefile