Show / Hide Table of Contents

Class CertificateSigningRequestSpecArgs

This information is immutable after the request is created. Only the Request and Usages fields can be set on creation, other fields are derived by Kubernetes and cannot be modified by users.

Inheritance
System.Object
InputArgs
ResourceArgs
CertificateSigningRequestSpecArgs
Inherited Members
ResourceArgs.Empty
System.Object.Equals(System.Object)
System.Object.Equals(System.Object, System.Object)
System.Object.GetHashCode()
System.Object.GetType()
System.Object.MemberwiseClone()
System.Object.ReferenceEquals(System.Object, System.Object)
System.Object.ToString()
Namespace: Pulumi.Kubernetes.Types.Inputs.Certificates.V1Beta1
Assembly: Pulumi.Kubernetes.dll
Syntax
public class CertificateSigningRequestSpecArgs : ResourceArgs

Properties

View Source

Extra

Extra information about the requesting user. See user.Info interface for details.

Declaration
public InputMap<InputList<string>> Extra { get; set; }
Property Value
Type Description
InputMap<InputList<System.String>>
View Source

Groups

Group information about the requesting user. See user.Info interface for details.

Declaration
public InputList<string> Groups { get; set; }
Property Value
Type Description
InputList<System.String>
View Source

Request

Base64-encoded PKCS#10 CSR data

Declaration
public Input<string> Request { get; set; }
Property Value
Type Description
Input<System.String>
View Source

SignerName

Requested signer for the request. It is a qualified name in the form: scope-hostname.io/name. If empty, it will be defaulted:

  1. If it's a kubelet client certificate, it is assigned "kubernetes.io/kube-apiserver-client-kubelet".
  2. If it's a kubelet serving certificate, it is assigned "kubernetes.io/kubelet-serving".
  3. Otherwise, it is assigned "kubernetes.io/legacy-unknown". Distribution of trust for signers happens out of band. You can select on this field using spec.signerName.
Declaration
public Input<string> SignerName { get; set; }
Property Value
Type Description
Input<System.String>
View Source

Uid

UID information about the requesting user. See user.Info interface for details.

Declaration
public Input<string> Uid { get; set; }
Property Value
Type Description
Input<System.String>
View Source

Usages

allowedUsages specifies a set of usage contexts the key will be valid for. See: https://tools.ietf.org/html/rfc5280#section-4.2.1.3 https://tools.ietf.org/html/rfc5280#section-4.2.1.12

Declaration
public InputList<string> Usages { get; set; }
Property Value
Type Description
InputList<System.String>
View Source

Username

Information about the requesting user. See user.Info interface for details.

Declaration
public Input<string> Username { get; set; }
Property Value
Type Description
Input<System.String>
  • View Source
Back to top Copyright 2016-2020, Pulumi Corporation.