Grant

kms.services.k8s.aws/v1alpha1

TypeLink
GoDockms-controller/apis/v1alpha1#Grant

Metadata

PropertyValue
ScopeNamespaced
KindGrant
ListKindGrantList
Pluralgrants
Singulargrant

Spec

constraints: 
  encryptionContextEquals: {}
  encryptionContextSubset: {}
grantTokens:
- string
granteePrincipal: string
keyID: string
keyRef: 
  from: 
    name: string
name: string
operations:
- string
retiringPrincipal: string
FieldDescription
constraints
Optional
object
Specifies a grant constraint.


KMS supports the EncryptionContextEquals and EncryptionContextSubset grant
constraints. Each constraint value can include up to 8 encryption context
pairs. The encryption context value in each constraint cannot exceed 384
characters. For information about grant constraints, see Using grant constraints
(https://docs.aws.amazon.com/kms/latest/developerguide/create-grant-overview.html#grant-constraints)
in the Key Management Service Developer Guide. For more information about
encryption context, see Encryption context (https://docs.aws.amazon.com/kms/latest/developerguide/concepts.html#encrypt_context)
in the Key Management Service Developer Guide .


The encryption context grant constraints allow the permissions in the grant
only when the encryption context in the request matches (EncryptionContextEquals)
or includes (EncryptionContextSubset) the encryption context specified in
this structure.


The encryption context grant constraints are supported only on grant operations
(https://docs.aws.amazon.com/kms/latest/developerguide/grants.html#terms-grant-operations)
that include an EncryptionContext parameter, such as cryptographic operations
on symmetric encryption KMS keys. Grants with grant constraints can include
the DescribeKey and RetireGrant operations, but the constraint doesn’t apply
to these operations. If a grant with a grant constraint includes the CreateGrant
operation, the constraint requires that any grants created with the CreateGrant
permission have an equally strict or stricter encryption context constraint.


You cannot use an encryption context grant constraint for cryptographic operations
with asymmetric KMS keys or HMAC KMS keys. These keys don’t support an encryption
context.
constraints.encryptionContextEquals
Optional
object
constraints.encryptionContextSubset
Optional
object
grantTokens
Optional
array
A list of grant tokens.


Use a grant token when your permission to call this operation comes from
a new grant that has not yet achieved eventual consistency. For more information,
see Grant token (https://docs.aws.amazon.com/kms/latest/developerguide/grants.html#grant_token)
and Using a grant token (https://docs.aws.amazon.com/kms/latest/developerguide/grant-manage.html#using-grant-token)
in the Key Management Service Developer Guide.
grantTokens.[]
Required
string
keyID
Optional
string
Identifies the KMS key for the grant. The grant gives principals permission
to use this KMS key.


Specify the key ID or key ARN of the KMS key. To specify a KMS key in a different
Amazon Web Services account, you must use the key ARN.


For example:


* Key ID: 1234abcd-12ab-34cd-56ef-1234567890ab


* Key ARN: arn:aws:kms:us-east-2:111122223333:key/1234abcd-12ab-34cd-56ef-1234567890ab


To get the key ID and key ARN for a KMS key, use ListKeys or DescribeKey.
keyRef
Optional
object
AWSResourceReferenceWrapper provides a wrapper around *AWSResourceReference
type to provide more user friendly syntax for references using ‘from’ field
Ex:
APIIDRef:


from:
name: my-api
keyRef.from
Optional
object
AWSResourceReference provides all the values necessary to reference another
k8s resource for finding the identifier(Id/ARN/Name)
keyRef.from.name
Optional
string
name
Optional
string
A friendly name for the grant. Use this value to prevent the unintended creation
of duplicate grants when retrying this request.


When this value is absent, all CreateGrant requests result in a new grant
with a unique GrantId even if all the supplied parameters are identical.
This can result in unintended duplicates when you retry the CreateGrant request.


When this value is present, you can retry a CreateGrant request with identical
parameters; if the grant already exists, the original GrantId is returned
without creating a new grant. Note that the returned grant token is unique
with every CreateGrant request, even when a duplicate GrantId is returned.
All grant tokens for the same grant ID can be used interchangeably.
operations
Required
array
A list of operations that the grant permits.


This list must include only operations that are permitted in a grant. Also,
the operation must be supported on the KMS key. For example, you cannot create
a grant for a symmetric encryption KMS key that allows the Sign operation,
or a grant for an asymmetric KMS key that allows the GenerateDataKey operation.
If you try, KMS returns a ValidationError exception. For details, see Grant
operations (https://docs.aws.amazon.com/kms/latest/developerguide/grants.html#terms-grant-operations)
in the Key Management Service Developer Guide.
operations.[]
Required
string

Status

ackResourceMetadata: 
  arn: string
  ownerAccountID: string
  region: string
conditions:
- lastTransitionTime: string
  message: string
  reason: string
  status: string
  type: string
grantID: string
grantToken: string
FieldDescription
ackResourceMetadata
Optional
object
All CRs managed by ACK have a common Status.ACKResourceMetadata member
that is used to contain resource sync state, account ownership,
constructed ARN for the resource
ackResourceMetadata.arn
Optional
string
ARN is the Amazon Resource Name for the resource. This is a
globally-unique identifier and is set only by the ACK service controller
once the controller has orchestrated the creation of the resource OR
when it has verified that an “adopted” resource (a resource where the
ARN annotation was set by the Kubernetes user on the CR) exists and
matches the supplied CR’s Spec field values.
TODO(vijat@): Find a better strategy for resources that do not have ARN in CreateOutputResponse
https://github.com/aws/aws-controllers-k8s/issues/270
ackResourceMetadata.ownerAccountID
Required
string
OwnerAccountID is the AWS Account ID of the account that owns the
backend AWS service API resource.
ackResourceMetadata.region
Required
string
Region is the AWS region in which the resource exists or will exist.
conditions
Optional
array
All CRS managed by ACK have a common Status.Conditions member that
contains a collection of ackv1alpha1.Condition objects that describe
the various terminal states of the CR and its backend AWS service API
resource
conditions.[]
Required
object
Condition is the common struct used by all CRDs managed by ACK service
controllers to indicate terminal states of the CR and its backend AWS
service API resource
conditions.[].message
Optional
string
A human readable message indicating details about the transition.
conditions.[].reason
Optional
string
The reason for the condition’s last transition.
conditions.[].status
Optional
string
Status of the condition, one of True, False, Unknown.
conditions.[].type
Optional
string
Type is the type of the Condition
grantID
Optional
string
The unique identifier for the grant.


You can use the GrantId in a ListGrants, RetireGrant, or RevokeGrant operation.
grantToken
Optional
string
The grant token.


Use a grant token when your permission to call this operation comes from
a new grant that has not yet achieved eventual consistency. For more information,
see Grant token (https://docs.aws.amazon.com/kms/latest/developerguide/grants.html#grant_token)
and Using a grant token (https://docs.aws.amazon.com/kms/latest/developerguide/grant-manage.html#using-grant-token)
in the Key Management Service Developer Guide.