1. Packages
  2. Castai Provider
  3. API Docs
  4. ServiceAccountKey
castai 7.44.0 published on Friday, Mar 21, 2025 by castai

castai.ServiceAccountKey

Explore with Pulumi AI

castai logo
castai 7.44.0 published on Friday, Mar 21, 2025 by castai

    Service account key resource allows managing CAST AI service account keys.

    Example Usage

    import * as pulumi from "@pulumi/pulumi";
    import * as castai from "@pulumi/castai";
    
    const serviceAccountKeyServiceAccountKey = new castai.ServiceAccountKey("serviceAccountKeyServiceAccountKey", {
        organizationId: data.castai_organization.test.id,
        serviceAccountId: castai_service_account.service_account.id,
        active: true,
        expiresAt: "2026-01-01T00:00:00Z",
    });
    export const serviceAccountKey = serviceAccountKeyServiceAccountKey.token;
    
    import pulumi
    import pulumi_castai as castai
    
    service_account_key_service_account_key = castai.ServiceAccountKey("serviceAccountKeyServiceAccountKey",
        organization_id=data["castai_organization"]["test"]["id"],
        service_account_id=castai_service_account["service_account"]["id"],
        active=True,
        expires_at="2026-01-01T00:00:00Z")
    pulumi.export("serviceAccountKey", service_account_key_service_account_key.token)
    
    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 {
    		serviceAccountKeyServiceAccountKey, err := castai.NewServiceAccountKey(ctx, "serviceAccountKeyServiceAccountKey", &castai.ServiceAccountKeyArgs{
    			OrganizationId:   pulumi.Any(data.Castai_organization.Test.Id),
    			ServiceAccountId: pulumi.Any(castai_service_account.Service_account.Id),
    			Active:           pulumi.Bool(true),
    			ExpiresAt:        pulumi.String("2026-01-01T00:00:00Z"),
    		})
    		if err != nil {
    			return err
    		}
    		ctx.Export("serviceAccountKey", serviceAccountKeyServiceAccountKey.Token)
    		return nil
    	})
    }
    
    using System.Collections.Generic;
    using System.Linq;
    using Pulumi;
    using Castai = Pulumi.Castai;
    
    return await Deployment.RunAsync(() => 
    {
        var serviceAccountKeyServiceAccountKey = new Castai.ServiceAccountKey("serviceAccountKeyServiceAccountKey", new()
        {
            OrganizationId = data.Castai_organization.Test.Id,
            ServiceAccountId = castai_service_account.Service_account.Id,
            Active = true,
            ExpiresAt = "2026-01-01T00:00:00Z",
        });
    
        return new Dictionary<string, object?>
        {
            ["serviceAccountKey"] = serviceAccountKeyServiceAccountKey.Token,
        };
    });
    
    package generated_program;
    
    import com.pulumi.Context;
    import com.pulumi.Pulumi;
    import com.pulumi.core.Output;
    import com.pulumi.castai.ServiceAccountKey;
    import com.pulumi.castai.ServiceAccountKeyArgs;
    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 serviceAccountKeyServiceAccountKey = new ServiceAccountKey("serviceAccountKeyServiceAccountKey", ServiceAccountKeyArgs.builder()
                .organizationId(data.castai_organization().test().id())
                .serviceAccountId(castai_service_account.service_account().id())
                .active(true)
                .expiresAt("2026-01-01T00:00:00Z")
                .build());
    
            ctx.export("serviceAccountKey", serviceAccountKeyServiceAccountKey.token());
        }
    }
    
    resources:
      serviceAccountKeyServiceAccountKey:
        type: castai:ServiceAccountKey
        properties:
          organizationId: ${data.castai_organization.test.id}
          serviceAccountId: ${castai_service_account.service_account.id}
          active: true
          expiresAt: 2026-01-01T00:00:00Z
    outputs:
      serviceAccountKey: ${serviceAccountKeyServiceAccountKey.token}
    

    Create ServiceAccountKey Resource

    Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.

    Constructor syntax

    new ServiceAccountKey(name: string, args: ServiceAccountKeyArgs, opts?: CustomResourceOptions);
    @overload
    def ServiceAccountKey(resource_name: str,
                          args: ServiceAccountKeyArgs,
                          opts: Optional[ResourceOptions] = None)
    
    @overload
    def ServiceAccountKey(resource_name: str,
                          opts: Optional[ResourceOptions] = None,
                          organization_id: Optional[str] = None,
                          service_account_id: Optional[str] = None,
                          active: Optional[bool] = None,
                          expires_at: Optional[str] = None,
                          name: Optional[str] = None,
                          service_account_key_id: Optional[str] = None,
                          timeouts: Optional[ServiceAccountKeyTimeoutsArgs] = None)
    func NewServiceAccountKey(ctx *Context, name string, args ServiceAccountKeyArgs, opts ...ResourceOption) (*ServiceAccountKey, error)
    public ServiceAccountKey(string name, ServiceAccountKeyArgs args, CustomResourceOptions? opts = null)
    public ServiceAccountKey(String name, ServiceAccountKeyArgs args)
    public ServiceAccountKey(String name, ServiceAccountKeyArgs args, CustomResourceOptions options)
    
    type: castai:ServiceAccountKey
    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 ServiceAccountKeyArgs
    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 ServiceAccountKeyArgs
    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 ServiceAccountKeyArgs
    The arguments to resource properties.
    opts ResourceOption
    Bag of options to control resource's behavior.
    name string
    The unique name of the resource.
    args ServiceAccountKeyArgs
    The arguments to resource properties.
    opts CustomResourceOptions
    Bag of options to control resource's behavior.
    name String
    The unique name of the resource.
    args ServiceAccountKeyArgs
    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 serviceAccountKeyResource = new Castai.ServiceAccountKey("serviceAccountKeyResource", new()
    {
        OrganizationId = "string",
        ServiceAccountId = "string",
        Active = false,
        ExpiresAt = "string",
        Name = "string",
        ServiceAccountKeyId = "string",
        Timeouts = new Castai.Inputs.ServiceAccountKeyTimeoutsArgs
        {
            Create = "string",
            Delete = "string",
            Read = "string",
            Update = "string",
        },
    });
    
    example, err := castai.NewServiceAccountKey(ctx, "serviceAccountKeyResource", &castai.ServiceAccountKeyArgs{
    OrganizationId: pulumi.String("string"),
    ServiceAccountId: pulumi.String("string"),
    Active: pulumi.Bool(false),
    ExpiresAt: pulumi.String("string"),
    Name: pulumi.String("string"),
    ServiceAccountKeyId: pulumi.String("string"),
    Timeouts: &.ServiceAccountKeyTimeoutsArgs{
    Create: pulumi.String("string"),
    Delete: pulumi.String("string"),
    Read: pulumi.String("string"),
    Update: pulumi.String("string"),
    },
    })
    
    var serviceAccountKeyResource = new ServiceAccountKey("serviceAccountKeyResource", ServiceAccountKeyArgs.builder()
        .organizationId("string")
        .serviceAccountId("string")
        .active(false)
        .expiresAt("string")
        .name("string")
        .serviceAccountKeyId("string")
        .timeouts(ServiceAccountKeyTimeoutsArgs.builder()
            .create("string")
            .delete("string")
            .read("string")
            .update("string")
            .build())
        .build());
    
    service_account_key_resource = castai.ServiceAccountKey("serviceAccountKeyResource",
        organization_id="string",
        service_account_id="string",
        active=False,
        expires_at="string",
        name="string",
        service_account_key_id="string",
        timeouts={
            "create": "string",
            "delete": "string",
            "read": "string",
            "update": "string",
        })
    
    const serviceAccountKeyResource = new castai.ServiceAccountKey("serviceAccountKeyResource", {
        organizationId: "string",
        serviceAccountId: "string",
        active: false,
        expiresAt: "string",
        name: "string",
        serviceAccountKeyId: "string",
        timeouts: {
            create: "string",
            "delete": "string",
            read: "string",
            update: "string",
        },
    });
    
    type: castai:ServiceAccountKey
    properties:
        active: false
        expiresAt: string
        name: string
        organizationId: string
        serviceAccountId: string
        serviceAccountKeyId: string
        timeouts:
            create: string
            delete: string
            read: string
            update: string
    

    ServiceAccountKey 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 ServiceAccountKey resource accepts the following input properties:

    OrganizationId string
    ID of the organization.
    ServiceAccountId string
    ID of the service account.
    Active bool
    Whether the service account key is active. Defaults to true.
    ExpiresAt string
    The expiration time of the service account key in RFC3339 format. Defaults to an empty string.
    Name string
    Name of the service account key.
    ServiceAccountKeyId string
    The ID of this resource.
    Timeouts ServiceAccountKeyTimeouts
    OrganizationId string
    ID of the organization.
    ServiceAccountId string
    ID of the service account.
    Active bool
    Whether the service account key is active. Defaults to true.
    ExpiresAt string
    The expiration time of the service account key in RFC3339 format. Defaults to an empty string.
    Name string
    Name of the service account key.
    ServiceAccountKeyId string
    The ID of this resource.
    Timeouts ServiceAccountKeyTimeoutsArgs
    organizationId String
    ID of the organization.
    serviceAccountId String
    ID of the service account.
    active Boolean
    Whether the service account key is active. Defaults to true.
    expiresAt String
    The expiration time of the service account key in RFC3339 format. Defaults to an empty string.
    name String
    Name of the service account key.
    serviceAccountKeyId String
    The ID of this resource.
    timeouts ServiceAccountKeyTimeouts
    organizationId string
    ID of the organization.
    serviceAccountId string
    ID of the service account.
    active boolean
    Whether the service account key is active. Defaults to true.
    expiresAt string
    The expiration time of the service account key in RFC3339 format. Defaults to an empty string.
    name string
    Name of the service account key.
    serviceAccountKeyId string
    The ID of this resource.
    timeouts ServiceAccountKeyTimeouts
    organization_id str
    ID of the organization.
    service_account_id str
    ID of the service account.
    active bool
    Whether the service account key is active. Defaults to true.
    expires_at str
    The expiration time of the service account key in RFC3339 format. Defaults to an empty string.
    name str
    Name of the service account key.
    service_account_key_id str
    The ID of this resource.
    timeouts ServiceAccountKeyTimeoutsArgs
    organizationId String
    ID of the organization.
    serviceAccountId String
    ID of the service account.
    active Boolean
    Whether the service account key is active. Defaults to true.
    expiresAt String
    The expiration time of the service account key in RFC3339 format. Defaults to an empty string.
    name String
    Name of the service account key.
    serviceAccountKeyId String
    The ID of this resource.
    timeouts Property Map

    Outputs

    All input properties are implicitly available as output properties. Additionally, the ServiceAccountKey resource produces the following output properties:

    Id string
    The provider-assigned unique ID for this managed resource.
    LastUsedAt string
    Last time the service account key was used.
    Prefix string
    Prefix of the service account key.
    Token string
    The token of the service account key used for authentication.
    Id string
    The provider-assigned unique ID for this managed resource.
    LastUsedAt string
    Last time the service account key was used.
    Prefix string
    Prefix of the service account key.
    Token string
    The token of the service account key used for authentication.
    id String
    The provider-assigned unique ID for this managed resource.
    lastUsedAt String
    Last time the service account key was used.
    prefix String
    Prefix of the service account key.
    token String
    The token of the service account key used for authentication.
    id string
    The provider-assigned unique ID for this managed resource.
    lastUsedAt string
    Last time the service account key was used.
    prefix string
    Prefix of the service account key.
    token string
    The token of the service account key used for authentication.
    id str
    The provider-assigned unique ID for this managed resource.
    last_used_at str
    Last time the service account key was used.
    prefix str
    Prefix of the service account key.
    token str
    The token of the service account key used for authentication.
    id String
    The provider-assigned unique ID for this managed resource.
    lastUsedAt String
    Last time the service account key was used.
    prefix String
    Prefix of the service account key.
    token String
    The token of the service account key used for authentication.

    Look up Existing ServiceAccountKey Resource

    Get an existing ServiceAccountKey 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?: ServiceAccountKeyState, opts?: CustomResourceOptions): ServiceAccountKey
    @staticmethod
    def get(resource_name: str,
            id: str,
            opts: Optional[ResourceOptions] = None,
            active: Optional[bool] = None,
            expires_at: Optional[str] = None,
            last_used_at: Optional[str] = None,
            name: Optional[str] = None,
            organization_id: Optional[str] = None,
            prefix: Optional[str] = None,
            service_account_id: Optional[str] = None,
            service_account_key_id: Optional[str] = None,
            timeouts: Optional[ServiceAccountKeyTimeoutsArgs] = None,
            token: Optional[str] = None) -> ServiceAccountKey
    func GetServiceAccountKey(ctx *Context, name string, id IDInput, state *ServiceAccountKeyState, opts ...ResourceOption) (*ServiceAccountKey, error)
    public static ServiceAccountKey Get(string name, Input<string> id, ServiceAccountKeyState? state, CustomResourceOptions? opts = null)
    public static ServiceAccountKey get(String name, Output<String> id, ServiceAccountKeyState state, CustomResourceOptions options)
    resources:  _:    type: castai:ServiceAccountKey    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.
    The following state arguments are supported:
    Active bool
    Whether the service account key is active. Defaults to true.
    ExpiresAt string
    The expiration time of the service account key in RFC3339 format. Defaults to an empty string.
    LastUsedAt string
    Last time the service account key was used.
    Name string
    Name of the service account key.
    OrganizationId string
    ID of the organization.
    Prefix string
    Prefix of the service account key.
    ServiceAccountId string
    ID of the service account.
    ServiceAccountKeyId string
    The ID of this resource.
    Timeouts ServiceAccountKeyTimeouts
    Token string
    The token of the service account key used for authentication.
    Active bool
    Whether the service account key is active. Defaults to true.
    ExpiresAt string
    The expiration time of the service account key in RFC3339 format. Defaults to an empty string.
    LastUsedAt string
    Last time the service account key was used.
    Name string
    Name of the service account key.
    OrganizationId string
    ID of the organization.
    Prefix string
    Prefix of the service account key.
    ServiceAccountId string
    ID of the service account.
    ServiceAccountKeyId string
    The ID of this resource.
    Timeouts ServiceAccountKeyTimeoutsArgs
    Token string
    The token of the service account key used for authentication.
    active Boolean
    Whether the service account key is active. Defaults to true.
    expiresAt String
    The expiration time of the service account key in RFC3339 format. Defaults to an empty string.
    lastUsedAt String
    Last time the service account key was used.
    name String
    Name of the service account key.
    organizationId String
    ID of the organization.
    prefix String
    Prefix of the service account key.
    serviceAccountId String
    ID of the service account.
    serviceAccountKeyId String
    The ID of this resource.
    timeouts ServiceAccountKeyTimeouts
    token String
    The token of the service account key used for authentication.
    active boolean
    Whether the service account key is active. Defaults to true.
    expiresAt string
    The expiration time of the service account key in RFC3339 format. Defaults to an empty string.
    lastUsedAt string
    Last time the service account key was used.
    name string
    Name of the service account key.
    organizationId string
    ID of the organization.
    prefix string
    Prefix of the service account key.
    serviceAccountId string
    ID of the service account.
    serviceAccountKeyId string
    The ID of this resource.
    timeouts ServiceAccountKeyTimeouts
    token string
    The token of the service account key used for authentication.
    active bool
    Whether the service account key is active. Defaults to true.
    expires_at str
    The expiration time of the service account key in RFC3339 format. Defaults to an empty string.
    last_used_at str
    Last time the service account key was used.
    name str
    Name of the service account key.
    organization_id str
    ID of the organization.
    prefix str
    Prefix of the service account key.
    service_account_id str
    ID of the service account.
    service_account_key_id str
    The ID of this resource.
    timeouts ServiceAccountKeyTimeoutsArgs
    token str
    The token of the service account key used for authentication.
    active Boolean
    Whether the service account key is active. Defaults to true.
    expiresAt String
    The expiration time of the service account key in RFC3339 format. Defaults to an empty string.
    lastUsedAt String
    Last time the service account key was used.
    name String
    Name of the service account key.
    organizationId String
    ID of the organization.
    prefix String
    Prefix of the service account key.
    serviceAccountId String
    ID of the service account.
    serviceAccountKeyId String
    The ID of this resource.
    timeouts Property Map
    token String
    The token of the service account key used for authentication.

    Supporting Types

    ServiceAccountKeyTimeouts, ServiceAccountKeyTimeoutsArgs

    Create string
    Delete string
    Read string
    Update string
    Create string
    Delete string
    Read string
    Update string
    create String
    delete String
    read String
    update String
    create string
    delete string
    read string
    update string
    create str
    delete str
    read str
    update str
    create String
    delete String
    read String
    update String

    Package Details

    Repository
    castai castai/terraform-provider-castai
    License
    Notes
    This Pulumi package is based on the castai Terraform Provider.
    castai logo
    castai 7.44.0 published on Friday, Mar 21, 2025 by castai