castai.EksUserArn
Explore with Pulumi AI
Retrieve EKS Cluster User ARN
Example Usage
import * as pulumi from "@pulumi/pulumi";
import * as castai from "@pulumi/castai";
const castaiUserArn = new castai.EksUserArn("castaiUserArn", {clusterId: castai_eks_clusterid.cluster_id.id});
import pulumi
import pulumi_castai as castai
castai_user_arn = castai.EksUserArn("castaiUserArn", cluster_id=castai_eks_clusterid["cluster_id"]["id"])
package main
import (
"github.com/pulumi/pulumi-terraform-provider/sdks/go/castai/v7/castai"
"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
)
func main() {
pulumi.Run(func(ctx *pulumi.Context) error {
_, err := castai.NewEksUserArn(ctx, "castaiUserArn", &castai.EksUserArnArgs{
ClusterId: pulumi.Any(castai_eks_clusterid.Cluster_id.Id),
})
if err != nil {
return err
}
return nil
})
}
using System.Collections.Generic;
using System.Linq;
using Pulumi;
using Castai = Pulumi.Castai;
return await Deployment.RunAsync(() =>
{
var castaiUserArn = new Castai.EksUserArn("castaiUserArn", new()
{
ClusterId = castai_eks_clusterid.Cluster_id.Id,
});
});
package generated_program;
import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.castai.EksUserArn;
import com.pulumi.castai.EksUserArnArgs;
import java.util.List;
import java.util.ArrayList;
import java.util.Map;
import java.io.File;
import java.nio.file.Files;
import java.nio.file.Paths;
public class App {
public static void main(String[] args) {
Pulumi.run(App::stack);
}
public static void stack(Context ctx) {
var castaiUserArn = new EksUserArn("castaiUserArn", EksUserArnArgs.builder()
.clusterId(castai_eks_clusterid.cluster_id().id())
.build());
}
}
resources:
castaiUserArn:
type: castai:EksUserArn
properties:
clusterId: ${castai_eks_clusterid.cluster_id.id}
Create EksUserArn Resource
Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.
Constructor syntax
new EksUserArn(name: string, args: EksUserArnArgs, opts?: CustomResourceOptions);
@overload
def EksUserArn(resource_name: str,
args: EksUserArnArgs,
opts: Optional[ResourceOptions] = None)
@overload
def EksUserArn(resource_name: str,
opts: Optional[ResourceOptions] = None,
cluster_id: Optional[str] = None,
eks_user_arn_id: Optional[str] = None)
func NewEksUserArn(ctx *Context, name string, args EksUserArnArgs, opts ...ResourceOption) (*EksUserArn, error)
public EksUserArn(string name, EksUserArnArgs args, CustomResourceOptions? opts = null)
public EksUserArn(String name, EksUserArnArgs args)
public EksUserArn(String name, EksUserArnArgs args, CustomResourceOptions options)
type: castai:EksUserArn
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 EksUserArnArgs
- 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 EksUserArnArgs
- 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 EksUserArnArgs
- The arguments to resource properties.
- opts ResourceOption
- Bag of options to control resource's behavior.
- name string
- The unique name of the resource.
- args EksUserArnArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- name String
- The unique name of the resource.
- args EksUserArnArgs
- 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 eksUserArnResource = new Castai.EksUserArn("eksUserArnResource", new()
{
ClusterId = "string",
EksUserArnId = "string",
});
example, err := castai.NewEksUserArn(ctx, "eksUserArnResource", &castai.EksUserArnArgs{
ClusterId: pulumi.String("string"),
EksUserArnId: pulumi.String("string"),
})
var eksUserArnResource = new EksUserArn("eksUserArnResource", EksUserArnArgs.builder()
.clusterId("string")
.eksUserArnId("string")
.build());
eks_user_arn_resource = castai.EksUserArn("eksUserArnResource",
cluster_id="string",
eks_user_arn_id="string")
const eksUserArnResource = new castai.EksUserArn("eksUserArnResource", {
clusterId: "string",
eksUserArnId: "string",
});
type: castai:EksUserArn
properties:
clusterId: string
eksUserArnId: string
EksUserArn Resource Properties
To learn more about resource properties and how to use them, see Inputs and Outputs in the Architecture and Concepts docs.
Inputs
In Python, inputs that are objects can be passed either as argument classes or as dictionary literals.
The EksUserArn resource accepts the following input properties:
- Cluster
Id string - Eks
User stringArn Id - The ID of this resource.
- Cluster
Id string - Eks
User stringArn Id - The ID of this resource.
- cluster
Id String - eks
User StringArn Id - The ID of this resource.
- cluster
Id string - eks
User stringArn Id - The ID of this resource.
- cluster_
id str - eks_
user_ strarn_ id - The ID of this resource.
- cluster
Id String - eks
User StringArn Id - The ID of this resource.
Outputs
All input properties are implicitly available as output properties. Additionally, the EksUserArn resource produces the following output properties:
Look up Existing EksUserArn Resource
Get an existing EksUserArn 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?: EksUserArnState, opts?: CustomResourceOptions): EksUserArn
@staticmethod
def get(resource_name: str,
id: str,
opts: Optional[ResourceOptions] = None,
arn: Optional[str] = None,
cluster_id: Optional[str] = None,
eks_user_arn_id: Optional[str] = None) -> EksUserArn
func GetEksUserArn(ctx *Context, name string, id IDInput, state *EksUserArnState, opts ...ResourceOption) (*EksUserArn, error)
public static EksUserArn Get(string name, Input<string> id, EksUserArnState? state, CustomResourceOptions? opts = null)
public static EksUserArn get(String name, Output<String> id, EksUserArnState state, CustomResourceOptions options)
resources: _: type: castai:EksUserArn get: id: ${id}
- 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.
- Arn string
- Cluster
Id string - Eks
User stringArn Id - The ID of this resource.
- Arn string
- Cluster
Id string - Eks
User stringArn Id - The ID of this resource.
- arn String
- cluster
Id String - eks
User StringArn Id - The ID of this resource.
- arn string
- cluster
Id string - eks
User stringArn Id - The ID of this resource.
- arn str
- cluster_
id str - eks_
user_ strarn_ id - The ID of this resource.
- arn String
- cluster
Id String - eks
User StringArn Id - The ID of this resource.
Package Details
- Repository
- castai castai/terraform-provider-castai
- License
- Notes
- This Pulumi package is based on the
castai
Terraform Provider.