castai.AksCluster
Explore with Pulumi AI
AKS cluster resource allows connecting an existing AKS cluster to CAST AI.
Create AksCluster Resource
Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.
Constructor syntax
new AksCluster(name: string, args: AksClusterArgs, opts?: CustomResourceOptions);
@overload
def AksCluster(resource_name: str,
args: AksClusterArgs,
opts: Optional[ResourceOptions] = None)
@overload
def AksCluster(resource_name: str,
opts: Optional[ResourceOptions] = None,
client_id: Optional[str] = None,
client_secret: Optional[str] = None,
node_resource_group: Optional[str] = None,
region: Optional[str] = None,
subscription_id: Optional[str] = None,
tenant_id: Optional[str] = None,
aks_cluster_id: Optional[str] = None,
delete_nodes_on_disconnect: Optional[bool] = None,
http_proxy_config: Optional[AksClusterHttpProxyConfigArgs] = None,
name: Optional[str] = None,
timeouts: Optional[AksClusterTimeoutsArgs] = None)
func NewAksCluster(ctx *Context, name string, args AksClusterArgs, opts ...ResourceOption) (*AksCluster, error)
public AksCluster(string name, AksClusterArgs args, CustomResourceOptions? opts = null)
public AksCluster(String name, AksClusterArgs args)
public AksCluster(String name, AksClusterArgs args, CustomResourceOptions options)
type: castai:AksCluster
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 AksClusterArgs
- 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 AksClusterArgs
- 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 AksClusterArgs
- The arguments to resource properties.
- opts ResourceOption
- Bag of options to control resource's behavior.
- name string
- The unique name of the resource.
- args AksClusterArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- name String
- The unique name of the resource.
- args AksClusterArgs
- 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 aksClusterResource = new Castai.AksCluster("aksClusterResource", new()
{
ClientId = "string",
ClientSecret = "string",
NodeResourceGroup = "string",
Region = "string",
SubscriptionId = "string",
TenantId = "string",
AksClusterId = "string",
DeleteNodesOnDisconnect = false,
HttpProxyConfig = new Castai.Inputs.AksClusterHttpProxyConfigArgs
{
HttpProxy = "string",
HttpsProxy = "string",
NoProxies = new[]
{
"string",
},
},
Name = "string",
Timeouts = new Castai.Inputs.AksClusterTimeoutsArgs
{
Create = "string",
Delete = "string",
Update = "string",
},
});
example, err := castai.NewAksCluster(ctx, "aksClusterResource", &castai.AksClusterArgs{
ClientId: pulumi.String("string"),
ClientSecret: pulumi.String("string"),
NodeResourceGroup: pulumi.String("string"),
Region: pulumi.String("string"),
SubscriptionId: pulumi.String("string"),
TenantId: pulumi.String("string"),
AksClusterId: pulumi.String("string"),
DeleteNodesOnDisconnect: pulumi.Bool(false),
HttpProxyConfig: &.AksClusterHttpProxyConfigArgs{
HttpProxy: pulumi.String("string"),
HttpsProxy: pulumi.String("string"),
NoProxies: pulumi.StringArray{
pulumi.String("string"),
},
},
Name: pulumi.String("string"),
Timeouts: &.AksClusterTimeoutsArgs{
Create: pulumi.String("string"),
Delete: pulumi.String("string"),
Update: pulumi.String("string"),
},
})
var aksClusterResource = new AksCluster("aksClusterResource", AksClusterArgs.builder()
.clientId("string")
.clientSecret("string")
.nodeResourceGroup("string")
.region("string")
.subscriptionId("string")
.tenantId("string")
.aksClusterId("string")
.deleteNodesOnDisconnect(false)
.httpProxyConfig(AksClusterHttpProxyConfigArgs.builder()
.httpProxy("string")
.httpsProxy("string")
.noProxies("string")
.build())
.name("string")
.timeouts(AksClusterTimeoutsArgs.builder()
.create("string")
.delete("string")
.update("string")
.build())
.build());
aks_cluster_resource = castai.AksCluster("aksClusterResource",
client_id="string",
client_secret="string",
node_resource_group="string",
region="string",
subscription_id="string",
tenant_id="string",
aks_cluster_id="string",
delete_nodes_on_disconnect=False,
http_proxy_config={
"http_proxy": "string",
"https_proxy": "string",
"no_proxies": ["string"],
},
name="string",
timeouts={
"create": "string",
"delete": "string",
"update": "string",
})
const aksClusterResource = new castai.AksCluster("aksClusterResource", {
clientId: "string",
clientSecret: "string",
nodeResourceGroup: "string",
region: "string",
subscriptionId: "string",
tenantId: "string",
aksClusterId: "string",
deleteNodesOnDisconnect: false,
httpProxyConfig: {
httpProxy: "string",
httpsProxy: "string",
noProxies: ["string"],
},
name: "string",
timeouts: {
create: "string",
"delete": "string",
update: "string",
},
});
type: castai:AksCluster
properties:
aksClusterId: string
clientId: string
clientSecret: string
deleteNodesOnDisconnect: false
httpProxyConfig:
httpProxy: string
httpsProxy: string
noProxies:
- string
name: string
nodeResourceGroup: string
region: string
subscriptionId: string
tenantId: string
timeouts:
create: string
delete: string
update: string
AksCluster 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 AksCluster resource accepts the following input properties:
- Client
Id string - Azure AD application ID that is created and used by CAST AI.
- Client
Secret string - Azure AD application password that will be used by CAST AI.
- Node
Resource stringGroup - Azure resource group in which nodes are and will be created.
- Region string
- AKS cluster region.
- Subscription
Id string - ID of the Azure subscription.
- Tenant
Id string - Azure AD tenant ID from the used subscription.
- Aks
Cluster stringId - The ID of this resource.
- Delete
Nodes boolOn Disconnect - Should CAST AI remove nodes managed by CAST.AI on disconnect.
- Http
Proxy AksConfig Cluster Http Proxy Config - HTTP proxy configuration for CAST AI nodes and node components.
- Name string
- AKS cluster name.
- Timeouts
Aks
Cluster Timeouts
- Client
Id string - Azure AD application ID that is created and used by CAST AI.
- Client
Secret string - Azure AD application password that will be used by CAST AI.
- Node
Resource stringGroup - Azure resource group in which nodes are and will be created.
- Region string
- AKS cluster region.
- Subscription
Id string - ID of the Azure subscription.
- Tenant
Id string - Azure AD tenant ID from the used subscription.
- Aks
Cluster stringId - The ID of this resource.
- Delete
Nodes boolOn Disconnect - Should CAST AI remove nodes managed by CAST.AI on disconnect.
- Http
Proxy AksConfig Cluster Http Proxy Config Args - HTTP proxy configuration for CAST AI nodes and node components.
- Name string
- AKS cluster name.
- Timeouts
Aks
Cluster Timeouts Args
- client
Id String - Azure AD application ID that is created and used by CAST AI.
- client
Secret String - Azure AD application password that will be used by CAST AI.
- node
Resource StringGroup - Azure resource group in which nodes are and will be created.
- region String
- AKS cluster region.
- subscription
Id String - ID of the Azure subscription.
- tenant
Id String - Azure AD tenant ID from the used subscription.
- aks
Cluster StringId - The ID of this resource.
- delete
Nodes BooleanOn Disconnect - Should CAST AI remove nodes managed by CAST.AI on disconnect.
- http
Proxy AksConfig Cluster Http Proxy Config - HTTP proxy configuration for CAST AI nodes and node components.
- name String
- AKS cluster name.
- timeouts
Aks
Cluster Timeouts
- client
Id string - Azure AD application ID that is created and used by CAST AI.
- client
Secret string - Azure AD application password that will be used by CAST AI.
- node
Resource stringGroup - Azure resource group in which nodes are and will be created.
- region string
- AKS cluster region.
- subscription
Id string - ID of the Azure subscription.
- tenant
Id string - Azure AD tenant ID from the used subscription.
- aks
Cluster stringId - The ID of this resource.
- delete
Nodes booleanOn Disconnect - Should CAST AI remove nodes managed by CAST.AI on disconnect.
- http
Proxy AksConfig Cluster Http Proxy Config - HTTP proxy configuration for CAST AI nodes and node components.
- name string
- AKS cluster name.
- timeouts
Aks
Cluster Timeouts
- client_
id str - Azure AD application ID that is created and used by CAST AI.
- client_
secret str - Azure AD application password that will be used by CAST AI.
- node_
resource_ strgroup - Azure resource group in which nodes are and will be created.
- region str
- AKS cluster region.
- subscription_
id str - ID of the Azure subscription.
- tenant_
id str - Azure AD tenant ID from the used subscription.
- aks_
cluster_ strid - The ID of this resource.
- delete_
nodes_ boolon_ disconnect - Should CAST AI remove nodes managed by CAST.AI on disconnect.
- http_
proxy_ Aksconfig Cluster Http Proxy Config Args - HTTP proxy configuration for CAST AI nodes and node components.
- name str
- AKS cluster name.
- timeouts
Aks
Cluster Timeouts Args
- client
Id String - Azure AD application ID that is created and used by CAST AI.
- client
Secret String - Azure AD application password that will be used by CAST AI.
- node
Resource StringGroup - Azure resource group in which nodes are and will be created.
- region String
- AKS cluster region.
- subscription
Id String - ID of the Azure subscription.
- tenant
Id String - Azure AD tenant ID from the used subscription.
- aks
Cluster StringId - The ID of this resource.
- delete
Nodes BooleanOn Disconnect - Should CAST AI remove nodes managed by CAST.AI on disconnect.
- http
Proxy Property MapConfig - HTTP proxy configuration for CAST AI nodes and node components.
- name String
- AKS cluster name.
- timeouts Property Map
Outputs
All input properties are implicitly available as output properties. Additionally, the AksCluster resource produces the following output properties:
- Cluster
Token string - CAST AI cluster token.
- Credentials
Id string - CAST AI internal credentials ID
- Id string
- The provider-assigned unique ID for this managed resource.
- Cluster
Token string - CAST AI cluster token.
- Credentials
Id string - CAST AI internal credentials ID
- Id string
- The provider-assigned unique ID for this managed resource.
- cluster
Token String - CAST AI cluster token.
- credentials
Id String - CAST AI internal credentials ID
- id String
- The provider-assigned unique ID for this managed resource.
- cluster
Token string - CAST AI cluster token.
- credentials
Id string - CAST AI internal credentials ID
- id string
- The provider-assigned unique ID for this managed resource.
- cluster_
token str - CAST AI cluster token.
- credentials_
id str - CAST AI internal credentials ID
- id str
- The provider-assigned unique ID for this managed resource.
- cluster
Token String - CAST AI cluster token.
- credentials
Id String - CAST AI internal credentials ID
- id String
- The provider-assigned unique ID for this managed resource.
Look up Existing AksCluster Resource
Get an existing AksCluster 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?: AksClusterState, opts?: CustomResourceOptions): AksCluster
@staticmethod
def get(resource_name: str,
id: str,
opts: Optional[ResourceOptions] = None,
aks_cluster_id: Optional[str] = None,
client_id: Optional[str] = None,
client_secret: Optional[str] = None,
cluster_token: Optional[str] = None,
credentials_id: Optional[str] = None,
delete_nodes_on_disconnect: Optional[bool] = None,
http_proxy_config: Optional[AksClusterHttpProxyConfigArgs] = None,
name: Optional[str] = None,
node_resource_group: Optional[str] = None,
region: Optional[str] = None,
subscription_id: Optional[str] = None,
tenant_id: Optional[str] = None,
timeouts: Optional[AksClusterTimeoutsArgs] = None) -> AksCluster
func GetAksCluster(ctx *Context, name string, id IDInput, state *AksClusterState, opts ...ResourceOption) (*AksCluster, error)
public static AksCluster Get(string name, Input<string> id, AksClusterState? state, CustomResourceOptions? opts = null)
public static AksCluster get(String name, Output<String> id, AksClusterState state, CustomResourceOptions options)
resources: _: type: castai:AksCluster 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.
- Aks
Cluster stringId - The ID of this resource.
- Client
Id string - Azure AD application ID that is created and used by CAST AI.
- Client
Secret string - Azure AD application password that will be used by CAST AI.
- Cluster
Token string - CAST AI cluster token.
- Credentials
Id string - CAST AI internal credentials ID
- Delete
Nodes boolOn Disconnect - Should CAST AI remove nodes managed by CAST.AI on disconnect.
- Http
Proxy AksConfig Cluster Http Proxy Config - HTTP proxy configuration for CAST AI nodes and node components.
- Name string
- AKS cluster name.
- Node
Resource stringGroup - Azure resource group in which nodes are and will be created.
- Region string
- AKS cluster region.
- Subscription
Id string - ID of the Azure subscription.
- Tenant
Id string - Azure AD tenant ID from the used subscription.
- Timeouts
Aks
Cluster Timeouts
- Aks
Cluster stringId - The ID of this resource.
- Client
Id string - Azure AD application ID that is created and used by CAST AI.
- Client
Secret string - Azure AD application password that will be used by CAST AI.
- Cluster
Token string - CAST AI cluster token.
- Credentials
Id string - CAST AI internal credentials ID
- Delete
Nodes boolOn Disconnect - Should CAST AI remove nodes managed by CAST.AI on disconnect.
- Http
Proxy AksConfig Cluster Http Proxy Config Args - HTTP proxy configuration for CAST AI nodes and node components.
- Name string
- AKS cluster name.
- Node
Resource stringGroup - Azure resource group in which nodes are and will be created.
- Region string
- AKS cluster region.
- Subscription
Id string - ID of the Azure subscription.
- Tenant
Id string - Azure AD tenant ID from the used subscription.
- Timeouts
Aks
Cluster Timeouts Args
- aks
Cluster StringId - The ID of this resource.
- client
Id String - Azure AD application ID that is created and used by CAST AI.
- client
Secret String - Azure AD application password that will be used by CAST AI.
- cluster
Token String - CAST AI cluster token.
- credentials
Id String - CAST AI internal credentials ID
- delete
Nodes BooleanOn Disconnect - Should CAST AI remove nodes managed by CAST.AI on disconnect.
- http
Proxy AksConfig Cluster Http Proxy Config - HTTP proxy configuration for CAST AI nodes and node components.
- name String
- AKS cluster name.
- node
Resource StringGroup - Azure resource group in which nodes are and will be created.
- region String
- AKS cluster region.
- subscription
Id String - ID of the Azure subscription.
- tenant
Id String - Azure AD tenant ID from the used subscription.
- timeouts
Aks
Cluster Timeouts
- aks
Cluster stringId - The ID of this resource.
- client
Id string - Azure AD application ID that is created and used by CAST AI.
- client
Secret string - Azure AD application password that will be used by CAST AI.
- cluster
Token string - CAST AI cluster token.
- credentials
Id string - CAST AI internal credentials ID
- delete
Nodes booleanOn Disconnect - Should CAST AI remove nodes managed by CAST.AI on disconnect.
- http
Proxy AksConfig Cluster Http Proxy Config - HTTP proxy configuration for CAST AI nodes and node components.
- name string
- AKS cluster name.
- node
Resource stringGroup - Azure resource group in which nodes are and will be created.
- region string
- AKS cluster region.
- subscription
Id string - ID of the Azure subscription.
- tenant
Id string - Azure AD tenant ID from the used subscription.
- timeouts
Aks
Cluster Timeouts
- aks_
cluster_ strid - The ID of this resource.
- client_
id str - Azure AD application ID that is created and used by CAST AI.
- client_
secret str - Azure AD application password that will be used by CAST AI.
- cluster_
token str - CAST AI cluster token.
- credentials_
id str - CAST AI internal credentials ID
- delete_
nodes_ boolon_ disconnect - Should CAST AI remove nodes managed by CAST.AI on disconnect.
- http_
proxy_ Aksconfig Cluster Http Proxy Config Args - HTTP proxy configuration for CAST AI nodes and node components.
- name str
- AKS cluster name.
- node_
resource_ strgroup - Azure resource group in which nodes are and will be created.
- region str
- AKS cluster region.
- subscription_
id str - ID of the Azure subscription.
- tenant_
id str - Azure AD tenant ID from the used subscription.
- timeouts
Aks
Cluster Timeouts Args
- aks
Cluster StringId - The ID of this resource.
- client
Id String - Azure AD application ID that is created and used by CAST AI.
- client
Secret String - Azure AD application password that will be used by CAST AI.
- cluster
Token String - CAST AI cluster token.
- credentials
Id String - CAST AI internal credentials ID
- delete
Nodes BooleanOn Disconnect - Should CAST AI remove nodes managed by CAST.AI on disconnect.
- http
Proxy Property MapConfig - HTTP proxy configuration for CAST AI nodes and node components.
- name String
- AKS cluster name.
- node
Resource StringGroup - Azure resource group in which nodes are and will be created.
- region String
- AKS cluster region.
- subscription
Id String - ID of the Azure subscription.
- tenant
Id String - Azure AD tenant ID from the used subscription.
- timeouts Property Map
Supporting Types
AksClusterHttpProxyConfig, AksClusterHttpProxyConfigArgs
- Http
Proxy string - Address to use for proxying HTTP requests.
- Https
Proxy string - Address to use for proxying HTTPS/TLS requests.
- No
Proxies List<string> - List of destinations that should not go through proxy.
- Http
Proxy string - Address to use for proxying HTTP requests.
- Https
Proxy string - Address to use for proxying HTTPS/TLS requests.
- No
Proxies []string - List of destinations that should not go through proxy.
- http
Proxy String - Address to use for proxying HTTP requests.
- https
Proxy String - Address to use for proxying HTTPS/TLS requests.
- no
Proxies List<String> - List of destinations that should not go through proxy.
- http
Proxy string - Address to use for proxying HTTP requests.
- https
Proxy string - Address to use for proxying HTTPS/TLS requests.
- no
Proxies string[] - List of destinations that should not go through proxy.
- http_
proxy str - Address to use for proxying HTTP requests.
- https_
proxy str - Address to use for proxying HTTPS/TLS requests.
- no_
proxies Sequence[str] - List of destinations that should not go through proxy.
- http
Proxy String - Address to use for proxying HTTP requests.
- https
Proxy String - Address to use for proxying HTTPS/TLS requests.
- no
Proxies List<String> - List of destinations that should not go through proxy.
AksClusterTimeouts, AksClusterTimeoutsArgs
Package Details
- Repository
- castai castai/terraform-provider-castai
- License
- Notes
- This Pulumi package is based on the
castai
Terraform Provider.