Key Ring IAMMember Args
data class KeyRingIAMMemberArgs(val condition: Output<KeyRingIAMMemberConditionArgs>? = null, val keyRingId: Output<String>? = null, val member: Output<String>? = null, val role: Output<String>? = null) : ConvertibleToJava<KeyRingIAMMemberArgs>
Import
IAM member imports use space-delimited identifiers; the resource in question, the role, and the account. This member resource can be imported using the key_ring_id
, role, and account e.g.
$ pulumi import gcp:kms/keyRingIAMMember:KeyRingIAMMember key_ring_iam "your-project-id/location-name/key-ring-name roles/viewer user:foo@example.com"
Content copied to clipboard
IAM binding imports use space-delimited identifiers; the resource in question and the role. This binding resource can be imported using the key_ring_id
and role, e.g.
$ pulumi import gcp:kms/keyRingIAMMember:KeyRingIAMMember key_ring_iam "your-project-id/location-name/key-ring-name roles/cloudkms.admin"
Content copied to clipboard
IAM policy imports use the identifier of the resource in question. This policy resource can be imported using the key_ring_id
, e.g.
$ pulumi import gcp:kms/keyRingIAMMember:KeyRingIAMMember key_ring_iam your-project-id/location-name/key-ring-name
Content copied to clipboard
Constructors
Link copied to clipboard
fun KeyRingIAMMemberArgs(condition: Output<KeyRingIAMMemberConditionArgs>? = null, keyRingId: Output<String>? = null, member: Output<String>? = null, role: Output<String>? = null)