openstack_identity_application_credential_v3
openstack_identity_application_credential_v3
к сведению
Эта инструкция — копия официальной документации OpenStack Terraform-провайдера в Terraform Registry.
Manages a V3 Application Credential resource within OpenStack Keystone.
All arguments including the application credential name and secret will be stored in the raw state as plain-text. Read more about sensitive data in state.
An Application Credential is created within the authenticated user project scope and is not visible by an admin or other accounts. The Application Credential visibility is similar to openstack_compute_keypair_v2.
Example Usage
Predefined secret
Application credential below will have only one swiftoperator
role.
resource "openstack_identity_application_credential_v3" "swift" {
name = "swift"
description = "Swift technical application credential"
secret = "supersecret"
roles = ["swiftoperator"]
expires_at = "2019-02-13T12:12:12Z"
}