Manage IBM Hyper Protect Crypto Services (HPCS) with ibm_hpcs
masterThe ibm_hpcs resource manages IBM Cloud Hyper Protect Crypto Services (HPCS) instances. This resource allows you to initialize an instance and add HPCS sub-resources.
Important Regional Limitation: Because recovery crypto units are currently only available in us-south and us-east, using Terraform to initialize HPCS instances is only supported in these two regions.
resource ibm_hpcs hpcs {
location = "us-south"
name = "test-hpcs"
plan = "standard"
units = 2
signature_threshold = 1
revocation_threshold = 1
admins {
name = "admin1"
key = "/cloudTKE/1.sigkey"
token = "<sensitive1234>"
}
admins {
name = "admin2"
key = "/cloudTKE/2.sigkey"
token = "<sensitive1234>"
}
}