rancher2.SecretV2
Explore with Pulumi AI
Provides a Rancher Secret v2 resource. This can be used to create k8s secrets for Rancher v2 environments and retrieve their information. Secret v2 resource is available at Rancher v2.5.x and above.
Create SecretV2 Resource
Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.
Constructor syntax
new SecretV2(name: string, args: SecretV2Args, opts?: CustomResourceOptions);
@overload
def SecretV2(resource_name: str,
args: SecretV2Args,
opts: Optional[ResourceOptions] = None)
@overload
def SecretV2(resource_name: str,
opts: Optional[ResourceOptions] = None,
cluster_id: Optional[str] = None,
data: Optional[Mapping[str, Any]] = None,
annotations: Optional[Mapping[str, Any]] = None,
immutable: Optional[bool] = None,
labels: Optional[Mapping[str, Any]] = None,
name: Optional[str] = None,
namespace: Optional[str] = None,
type: Optional[str] = None)
func NewSecretV2(ctx *Context, name string, args SecretV2Args, opts ...ResourceOption) (*SecretV2, error)
public SecretV2(string name, SecretV2Args args, CustomResourceOptions? opts = null)
public SecretV2(String name, SecretV2Args args)
public SecretV2(String name, SecretV2Args args, CustomResourceOptions options)
type: rancher2:SecretV2
properties: # The arguments to resource properties.
options: # Bag of options to control resource's behavior.
Parameters
- name string
- The unique name of the resource.
- args SecretV2Args
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- resource_name str
- The unique name of the resource.
- args SecretV2Args
- The arguments to resource properties.
- opts ResourceOptions
- Bag of options to control resource's behavior.
- ctx Context
- Context object for the current deployment.
- name string
- The unique name of the resource.
- args SecretV2Args
- The arguments to resource properties.
- opts ResourceOption
- Bag of options to control resource's behavior.
- name string
- The unique name of the resource.
- args SecretV2Args
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- name String
- The unique name of the resource.
- args SecretV2Args
- The arguments to resource properties.
- options CustomResourceOptions
- Bag of options to control resource's behavior.
Constructor example
The following reference example uses placeholder values for all input properties.
var secretV2Resource = new Rancher2.SecretV2("secretV2Resource", new()
{
ClusterId = "string",
Data =
{
{ "string", "any" },
},
Annotations =
{
{ "string", "any" },
},
Immutable = false,
Labels =
{
{ "string", "any" },
},
Name = "string",
Namespace = "string",
Type = "string",
});
example, err := rancher2.NewSecretV2(ctx, "secretV2Resource", &rancher2.SecretV2Args{
ClusterId: pulumi.String("string"),
Data: pulumi.Map{
"string": pulumi.Any("any"),
},
Annotations: pulumi.Map{
"string": pulumi.Any("any"),
},
Immutable: pulumi.Bool(false),
Labels: pulumi.Map{
"string": pulumi.Any("any"),
},
Name: pulumi.String("string"),
Namespace: pulumi.String("string"),
Type: pulumi.String("string"),
})
var secretV2Resource = new SecretV2("secretV2Resource", SecretV2Args.builder()
.clusterId("string")
.data(Map.of("string", "any"))
.annotations(Map.of("string", "any"))
.immutable(false)
.labels(Map.of("string", "any"))
.name("string")
.namespace("string")
.type("string")
.build());
secret_v2_resource = rancher2.SecretV2("secretV2Resource",
cluster_id="string",
data={
"string": "any",
},
annotations={
"string": "any",
},
immutable=False,
labels={
"string": "any",
},
name="string",
namespace="string",
type="string")
const secretV2Resource = new rancher2.SecretV2("secretV2Resource", {
clusterId: "string",
data: {
string: "any",
},
annotations: {
string: "any",
},
immutable: false,
labels: {
string: "any",
},
name: "string",
namespace: "string",
type: "string",
});
type: rancher2:SecretV2
properties:
annotations:
string: any
clusterId: string
data:
string: any
immutable: false
labels:
string: any
name: string
namespace: string
type: string
SecretV2 Resource Properties
To learn more about resource properties and how to use them, see Inputs and Outputs in the Architecture and Concepts docs.
Inputs
The SecretV2 resource accepts the following input properties:
- Cluster
Id string - The cluster id of the secret V2 (string)
- Data Dictionary<string, object>
- The data of the secret v2 (map)
- Annotations Dictionary<string, object>
- Annotations for the secret v2 (map)
- Immutable bool
- If set to true, any secret update will remove and recreate the secret. This is a beta field enabled by k8s
ImmutableEphemeralVolumes
feature gate. Default:false
(bool) - Labels Dictionary<string, object>
- Labels for the secret v2 (map)
- Name string
- The name of the secret v2 (string)
- Namespace string
- The namespaces of the secret v2. Default:
default
(string) - Type string
- The type of the k8s secret, used to facilitate programmatic handling of secret data, More info about k8s secret types and expected format. Default:
Opaque
(string)
- Cluster
Id string - The cluster id of the secret V2 (string)
- Data map[string]interface{}
- The data of the secret v2 (map)
- Annotations map[string]interface{}
- Annotations for the secret v2 (map)
- Immutable bool
- If set to true, any secret update will remove and recreate the secret. This is a beta field enabled by k8s
ImmutableEphemeralVolumes
feature gate. Default:false
(bool) - Labels map[string]interface{}
- Labels for the secret v2 (map)
- Name string
- The name of the secret v2 (string)
- Namespace string
- The namespaces of the secret v2. Default:
default
(string) - Type string
- The type of the k8s secret, used to facilitate programmatic handling of secret data, More info about k8s secret types and expected format. Default:
Opaque
(string)
- cluster
Id String - The cluster id of the secret V2 (string)
- data Map<String,Object>
- The data of the secret v2 (map)
- annotations Map<String,Object>
- Annotations for the secret v2 (map)
- immutable Boolean
- If set to true, any secret update will remove and recreate the secret. This is a beta field enabled by k8s
ImmutableEphemeralVolumes
feature gate. Default:false
(bool) - labels Map<String,Object>
- Labels for the secret v2 (map)
- name String
- The name of the secret v2 (string)
- namespace String
- The namespaces of the secret v2. Default:
default
(string) - type String
- The type of the k8s secret, used to facilitate programmatic handling of secret data, More info about k8s secret types and expected format. Default:
Opaque
(string)
- cluster
Id string - The cluster id of the secret V2 (string)
- data {[key: string]: any}
- The data of the secret v2 (map)
- annotations {[key: string]: any}
- Annotations for the secret v2 (map)
- immutable boolean
- If set to true, any secret update will remove and recreate the secret. This is a beta field enabled by k8s
ImmutableEphemeralVolumes
feature gate. Default:false
(bool) - labels {[key: string]: any}
- Labels for the secret v2 (map)
- name string
- The name of the secret v2 (string)
- namespace string
- The namespaces of the secret v2. Default:
default
(string) - type string
- The type of the k8s secret, used to facilitate programmatic handling of secret data, More info about k8s secret types and expected format. Default:
Opaque
(string)
- cluster_
id str - The cluster id of the secret V2 (string)
- data Mapping[str, Any]
- The data of the secret v2 (map)
- annotations Mapping[str, Any]
- Annotations for the secret v2 (map)
- immutable bool
- If set to true, any secret update will remove and recreate the secret. This is a beta field enabled by k8s
ImmutableEphemeralVolumes
feature gate. Default:false
(bool) - labels Mapping[str, Any]
- Labels for the secret v2 (map)
- name str
- The name of the secret v2 (string)
- namespace str
- The namespaces of the secret v2. Default:
default
(string) - type str
- The type of the k8s secret, used to facilitate programmatic handling of secret data, More info about k8s secret types and expected format. Default:
Opaque
(string)
- cluster
Id String - The cluster id of the secret V2 (string)
- data Map<Any>
- The data of the secret v2 (map)
- annotations Map<Any>
- Annotations for the secret v2 (map)
- immutable Boolean
- If set to true, any secret update will remove and recreate the secret. This is a beta field enabled by k8s
ImmutableEphemeralVolumes
feature gate. Default:false
(bool) - labels Map<Any>
- Labels for the secret v2 (map)
- name String
- The name of the secret v2 (string)
- namespace String
- The namespaces of the secret v2. Default:
default
(string) - type String
- The type of the k8s secret, used to facilitate programmatic handling of secret data, More info about k8s secret types and expected format. Default:
Opaque
(string)
Outputs
All input properties are implicitly available as output properties. Additionally, the SecretV2 resource produces the following output properties:
- Id string
- The provider-assigned unique ID for this managed resource.
- Resource
Version string - (Computed) The k8s resource version (string)
- Id string
- The provider-assigned unique ID for this managed resource.
- Resource
Version string - (Computed) The k8s resource version (string)
- id String
- The provider-assigned unique ID for this managed resource.
- resource
Version String - (Computed) The k8s resource version (string)
- id string
- The provider-assigned unique ID for this managed resource.
- resource
Version string - (Computed) The k8s resource version (string)
- id str
- The provider-assigned unique ID for this managed resource.
- resource_
version str - (Computed) The k8s resource version (string)
- id String
- The provider-assigned unique ID for this managed resource.
- resource
Version String - (Computed) The k8s resource version (string)
Look up Existing SecretV2 Resource
Get an existing SecretV2 resource’s state with the given name, ID, and optional extra properties used to qualify the lookup.
public static get(name: string, id: Input<ID>, state?: SecretV2State, opts?: CustomResourceOptions): SecretV2
@staticmethod
def get(resource_name: str,
id: str,
opts: Optional[ResourceOptions] = None,
annotations: Optional[Mapping[str, Any]] = None,
cluster_id: Optional[str] = None,
data: Optional[Mapping[str, Any]] = None,
immutable: Optional[bool] = None,
labels: Optional[Mapping[str, Any]] = None,
name: Optional[str] = None,
namespace: Optional[str] = None,
resource_version: Optional[str] = None,
type: Optional[str] = None) -> SecretV2
func GetSecretV2(ctx *Context, name string, id IDInput, state *SecretV2State, opts ...ResourceOption) (*SecretV2, error)
public static SecretV2 Get(string name, Input<string> id, SecretV2State? state, CustomResourceOptions? opts = null)
public static SecretV2 get(String name, Output<String> id, SecretV2State state, CustomResourceOptions options)
Resource lookup is not supported in YAML
- name
- The unique name of the resulting resource.
- id
- The unique provider ID of the resource to lookup.
- state
- Any extra arguments used during the lookup.
- opts
- A bag of options that control this resource's behavior.
- resource_name
- The unique name of the resulting resource.
- id
- The unique provider ID of the resource to lookup.
- name
- The unique name of the resulting resource.
- id
- The unique provider ID of the resource to lookup.
- state
- Any extra arguments used during the lookup.
- opts
- A bag of options that control this resource's behavior.
- name
- The unique name of the resulting resource.
- id
- The unique provider ID of the resource to lookup.
- state
- Any extra arguments used during the lookup.
- opts
- A bag of options that control this resource's behavior.
- name
- The unique name of the resulting resource.
- id
- The unique provider ID of the resource to lookup.
- state
- Any extra arguments used during the lookup.
- opts
- A bag of options that control this resource's behavior.
- Annotations Dictionary<string, object>
- Annotations for the secret v2 (map)
- Cluster
Id string - The cluster id of the secret V2 (string)
- Data Dictionary<string, object>
- The data of the secret v2 (map)
- Immutable bool
- If set to true, any secret update will remove and recreate the secret. This is a beta field enabled by k8s
ImmutableEphemeralVolumes
feature gate. Default:false
(bool) - Labels Dictionary<string, object>
- Labels for the secret v2 (map)
- Name string
- The name of the secret v2 (string)
- Namespace string
- The namespaces of the secret v2. Default:
default
(string) - Resource
Version string - (Computed) The k8s resource version (string)
- Type string
- The type of the k8s secret, used to facilitate programmatic handling of secret data, More info about k8s secret types and expected format. Default:
Opaque
(string)
- Annotations map[string]interface{}
- Annotations for the secret v2 (map)
- Cluster
Id string - The cluster id of the secret V2 (string)
- Data map[string]interface{}
- The data of the secret v2 (map)
- Immutable bool
- If set to true, any secret update will remove and recreate the secret. This is a beta field enabled by k8s
ImmutableEphemeralVolumes
feature gate. Default:false
(bool) - Labels map[string]interface{}
- Labels for the secret v2 (map)
- Name string
- The name of the secret v2 (string)
- Namespace string
- The namespaces of the secret v2. Default:
default
(string) - Resource
Version string - (Computed) The k8s resource version (string)
- Type string
- The type of the k8s secret, used to facilitate programmatic handling of secret data, More info about k8s secret types and expected format. Default:
Opaque
(string)
- annotations Map<String,Object>
- Annotations for the secret v2 (map)
- cluster
Id String - The cluster id of the secret V2 (string)
- data Map<String,Object>
- The data of the secret v2 (map)
- immutable Boolean
- If set to true, any secret update will remove and recreate the secret. This is a beta field enabled by k8s
ImmutableEphemeralVolumes
feature gate. Default:false
(bool) - labels Map<String,Object>
- Labels for the secret v2 (map)
- name String
- The name of the secret v2 (string)
- namespace String
- The namespaces of the secret v2. Default:
default
(string) - resource
Version String - (Computed) The k8s resource version (string)
- type String
- The type of the k8s secret, used to facilitate programmatic handling of secret data, More info about k8s secret types and expected format. Default:
Opaque
(string)
- annotations {[key: string]: any}
- Annotations for the secret v2 (map)
- cluster
Id string - The cluster id of the secret V2 (string)
- data {[key: string]: any}
- The data of the secret v2 (map)
- immutable boolean
- If set to true, any secret update will remove and recreate the secret. This is a beta field enabled by k8s
ImmutableEphemeralVolumes
feature gate. Default:false
(bool) - labels {[key: string]: any}
- Labels for the secret v2 (map)
- name string
- The name of the secret v2 (string)
- namespace string
- The namespaces of the secret v2. Default:
default
(string) - resource
Version string - (Computed) The k8s resource version (string)
- type string
- The type of the k8s secret, used to facilitate programmatic handling of secret data, More info about k8s secret types and expected format. Default:
Opaque
(string)
- annotations Mapping[str, Any]
- Annotations for the secret v2 (map)
- cluster_
id str - The cluster id of the secret V2 (string)
- data Mapping[str, Any]
- The data of the secret v2 (map)
- immutable bool
- If set to true, any secret update will remove and recreate the secret. This is a beta field enabled by k8s
ImmutableEphemeralVolumes
feature gate. Default:false
(bool) - labels Mapping[str, Any]
- Labels for the secret v2 (map)
- name str
- The name of the secret v2 (string)
- namespace str
- The namespaces of the secret v2. Default:
default
(string) - resource_
version str - (Computed) The k8s resource version (string)
- type str
- The type of the k8s secret, used to facilitate programmatic handling of secret data, More info about k8s secret types and expected format. Default:
Opaque
(string)
- annotations Map<Any>
- Annotations for the secret v2 (map)
- cluster
Id String - The cluster id of the secret V2 (string)
- data Map<Any>
- The data of the secret v2 (map)
- immutable Boolean
- If set to true, any secret update will remove and recreate the secret. This is a beta field enabled by k8s
ImmutableEphemeralVolumes
feature gate. Default:false
(bool) - labels Map<Any>
- Labels for the secret v2 (map)
- name String
- The name of the secret v2 (string)
- namespace String
- The namespaces of the secret v2. Default:
default
(string) - resource
Version String - (Computed) The k8s resource version (string)
- type String
- The type of the k8s secret, used to facilitate programmatic handling of secret data, More info about k8s secret types and expected format. Default:
Opaque
(string)
Import
V2 secrets can be imported using the Rancher cluster ID, Secret V2 namespace and name.
$ pulumi import rancher2:index/secretV2:SecretV2 foo <CLUSTER_ID>.<SECRET_V2_NAMESPACE>/<SECRET_V2_NAME>
To learn more about importing existing cloud resources, see Importing resources.
Package Details
- Repository
- Rancher2 pulumi/pulumi-rancher2
- License
- Apache-2.0
- Notes
- This Pulumi package is based on the
rancher2
Terraform Provider.