1. Packages
  2. Dome9 Provider
  3. API Docs
  4. CloudaccountKubernetes
dome9 1.40.3 published on Monday, Apr 14, 2025 by dome9

dome9.CloudaccountKubernetes

Explore with Pulumi AI

This resource used to onboard kubernetes cloud accounts to Dome9. This is the first and pre-requisite step in order to apply Dome9 kubernetes features on the account.

Example Usage

Basic usage:

import * as pulumi from "@pulumi/pulumi";
import * as dome9 from "@pulumi/dome9";

const test = new dome9.CloudaccountKubernetes("test", {
    admissionControl: {
        enabled: true,
    },
    imageAssurance: {
        enabled: true,
    },
    organizationalUnitId: "ORGANIZATIONAL UNIT ID",
    runtimeProtection: {
        enabled: true,
    },
    threatIntelligence: {
        enabled: true,
    },
});
Copy
import pulumi
import pulumi_dome9 as dome9

test = dome9.CloudaccountKubernetes("test",
    admission_control={
        "enabled": True,
    },
    image_assurance={
        "enabled": True,
    },
    organizational_unit_id="ORGANIZATIONAL UNIT ID",
    runtime_protection={
        "enabled": True,
    },
    threat_intelligence={
        "enabled": True,
    })
Copy
package main

import (
	"github.com/pulumi/pulumi-terraform-provider/sdks/go/dome9/dome9"
	"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
)

func main() {
	pulumi.Run(func(ctx *pulumi.Context) error {
		_, err := dome9.NewCloudaccountKubernetes(ctx, "test", &dome9.CloudaccountKubernetesArgs{
			AdmissionControl: &dome9.CloudaccountKubernetesAdmissionControlArgs{
				Enabled: pulumi.Bool(true),
			},
			ImageAssurance: &dome9.CloudaccountKubernetesImageAssuranceArgs{
				Enabled: pulumi.Bool(true),
			},
			OrganizationalUnitId: pulumi.String("ORGANIZATIONAL UNIT ID"),
			RuntimeProtection: &dome9.CloudaccountKubernetesRuntimeProtectionArgs{
				Enabled: pulumi.Bool(true),
			},
			ThreatIntelligence: &dome9.CloudaccountKubernetesThreatIntelligenceArgs{
				Enabled: pulumi.Bool(true),
			},
		})
		if err != nil {
			return err
		}
		return nil
	})
}
Copy
using System.Collections.Generic;
using System.Linq;
using Pulumi;
using Dome9 = Pulumi.Dome9;

return await Deployment.RunAsync(() => 
{
    var test = new Dome9.CloudaccountKubernetes("test", new()
    {
        AdmissionControl = new Dome9.Inputs.CloudaccountKubernetesAdmissionControlArgs
        {
            Enabled = true,
        },
        ImageAssurance = new Dome9.Inputs.CloudaccountKubernetesImageAssuranceArgs
        {
            Enabled = true,
        },
        OrganizationalUnitId = "ORGANIZATIONAL UNIT ID",
        RuntimeProtection = new Dome9.Inputs.CloudaccountKubernetesRuntimeProtectionArgs
        {
            Enabled = true,
        },
        ThreatIntelligence = new Dome9.Inputs.CloudaccountKubernetesThreatIntelligenceArgs
        {
            Enabled = true,
        },
    });

});
Copy
package generated_program;

import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.dome9.CloudaccountKubernetes;
import com.pulumi.dome9.CloudaccountKubernetesArgs;
import com.pulumi.dome9.inputs.CloudaccountKubernetesAdmissionControlArgs;
import com.pulumi.dome9.inputs.CloudaccountKubernetesImageAssuranceArgs;
import com.pulumi.dome9.inputs.CloudaccountKubernetesRuntimeProtectionArgs;
import com.pulumi.dome9.inputs.CloudaccountKubernetesThreatIntelligenceArgs;
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 test = new CloudaccountKubernetes("test", CloudaccountKubernetesArgs.builder()
            .admissionControl(CloudaccountKubernetesAdmissionControlArgs.builder()
                .enabled(true)
                .build())
            .imageAssurance(CloudaccountKubernetesImageAssuranceArgs.builder()
                .enabled(true)
                .build())
            .organizationalUnitId("ORGANIZATIONAL UNIT ID")
            .runtimeProtection(CloudaccountKubernetesRuntimeProtectionArgs.builder()
                .enabled(true)
                .build())
            .threatIntelligence(CloudaccountKubernetesThreatIntelligenceArgs.builder()
                .enabled(true)
                .build())
            .build());

    }
}
Copy
resources:
  test:
    type: dome9:CloudaccountKubernetes
    properties:
      admissionControl:
        enabled: true
      imageAssurance:
        enabled: true
      organizationalUnitId: ORGANIZATIONAL UNIT ID
      runtimeProtection:
        enabled: true
      threatIntelligence:
        enabled: true
Copy

Create CloudaccountKubernetes Resource

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

Constructor syntax

new CloudaccountKubernetes(name: string, args?: CloudaccountKubernetesArgs, opts?: CustomResourceOptions);
@overload
def CloudaccountKubernetes(resource_name: str,
                           args: Optional[CloudaccountKubernetesArgs] = None,
                           opts: Optional[ResourceOptions] = None)

@overload
def CloudaccountKubernetes(resource_name: str,
                           opts: Optional[ResourceOptions] = None,
                           admission_control: Optional[CloudaccountKubernetesAdmissionControlArgs] = None,
                           cloudaccount_kubernetes_id: Optional[str] = None,
                           image_assurance: Optional[CloudaccountKubernetesImageAssuranceArgs] = None,
                           name: Optional[str] = None,
                           organizational_unit_id: Optional[str] = None,
                           runtime_protection: Optional[CloudaccountKubernetesRuntimeProtectionArgs] = None,
                           threat_intelligence: Optional[CloudaccountKubernetesThreatIntelligenceArgs] = None)
func NewCloudaccountKubernetes(ctx *Context, name string, args *CloudaccountKubernetesArgs, opts ...ResourceOption) (*CloudaccountKubernetes, error)
public CloudaccountKubernetes(string name, CloudaccountKubernetesArgs? args = null, CustomResourceOptions? opts = null)
public CloudaccountKubernetes(String name, CloudaccountKubernetesArgs args)
public CloudaccountKubernetes(String name, CloudaccountKubernetesArgs args, CustomResourceOptions options)
type: dome9:CloudaccountKubernetes
properties: # The arguments to resource properties.
options: # Bag of options to control resource's behavior.

Parameters

name This property is required. string
The unique name of the resource.
args CloudaccountKubernetesArgs
The arguments to resource properties.
opts CustomResourceOptions
Bag of options to control resource's behavior.
resource_name This property is required. str
The unique name of the resource.
args CloudaccountKubernetesArgs
The arguments to resource properties.
opts ResourceOptions
Bag of options to control resource's behavior.
ctx Context
Context object for the current deployment.
name This property is required. string
The unique name of the resource.
args CloudaccountKubernetesArgs
The arguments to resource properties.
opts ResourceOption
Bag of options to control resource's behavior.
name This property is required. string
The unique name of the resource.
args CloudaccountKubernetesArgs
The arguments to resource properties.
opts CustomResourceOptions
Bag of options to control resource's behavior.
name This property is required. String
The unique name of the resource.
args This property is required. CloudaccountKubernetesArgs
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 cloudaccountKubernetesResource = new Dome9.CloudaccountKubernetes("cloudaccountKubernetesResource", new()
{
    AdmissionControl = new Dome9.Inputs.CloudaccountKubernetesAdmissionControlArgs
    {
        Enabled = false,
    },
    CloudaccountKubernetesId = "string",
    ImageAssurance = new Dome9.Inputs.CloudaccountKubernetesImageAssuranceArgs
    {
        Enabled = false,
    },
    Name = "string",
    OrganizationalUnitId = "string",
    RuntimeProtection = new Dome9.Inputs.CloudaccountKubernetesRuntimeProtectionArgs
    {
        Enabled = false,
    },
    ThreatIntelligence = new Dome9.Inputs.CloudaccountKubernetesThreatIntelligenceArgs
    {
        Enabled = false,
    },
});
Copy
example, err := dome9.NewCloudaccountKubernetes(ctx, "cloudaccountKubernetesResource", &dome9.CloudaccountKubernetesArgs{
AdmissionControl: &.CloudaccountKubernetesAdmissionControlArgs{
Enabled: pulumi.Bool(false),
},
CloudaccountKubernetesId: pulumi.String("string"),
ImageAssurance: &.CloudaccountKubernetesImageAssuranceArgs{
Enabled: pulumi.Bool(false),
},
Name: pulumi.String("string"),
OrganizationalUnitId: pulumi.String("string"),
RuntimeProtection: &.CloudaccountKubernetesRuntimeProtectionArgs{
Enabled: pulumi.Bool(false),
},
ThreatIntelligence: &.CloudaccountKubernetesThreatIntelligenceArgs{
Enabled: pulumi.Bool(false),
},
})
Copy
var cloudaccountKubernetesResource = new CloudaccountKubernetes("cloudaccountKubernetesResource", CloudaccountKubernetesArgs.builder()
    .admissionControl(CloudaccountKubernetesAdmissionControlArgs.builder()
        .enabled(false)
        .build())
    .cloudaccountKubernetesId("string")
    .imageAssurance(CloudaccountKubernetesImageAssuranceArgs.builder()
        .enabled(false)
        .build())
    .name("string")
    .organizationalUnitId("string")
    .runtimeProtection(CloudaccountKubernetesRuntimeProtectionArgs.builder()
        .enabled(false)
        .build())
    .threatIntelligence(CloudaccountKubernetesThreatIntelligenceArgs.builder()
        .enabled(false)
        .build())
    .build());
Copy
cloudaccount_kubernetes_resource = dome9.CloudaccountKubernetes("cloudaccountKubernetesResource",
    admission_control={
        "enabled": False,
    },
    cloudaccount_kubernetes_id="string",
    image_assurance={
        "enabled": False,
    },
    name="string",
    organizational_unit_id="string",
    runtime_protection={
        "enabled": False,
    },
    threat_intelligence={
        "enabled": False,
    })
Copy
const cloudaccountKubernetesResource = new dome9.CloudaccountKubernetes("cloudaccountKubernetesResource", {
    admissionControl: {
        enabled: false,
    },
    cloudaccountKubernetesId: "string",
    imageAssurance: {
        enabled: false,
    },
    name: "string",
    organizationalUnitId: "string",
    runtimeProtection: {
        enabled: false,
    },
    threatIntelligence: {
        enabled: false,
    },
});
Copy
type: dome9:CloudaccountKubernetes
properties:
    admissionControl:
        enabled: false
    cloudaccountKubernetesId: string
    imageAssurance:
        enabled: false
    name: string
    organizationalUnitId: string
    runtimeProtection:
        enabled: false
    threatIntelligence:
        enabled: false
Copy

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

AdmissionControl CloudaccountKubernetesAdmissionControl
Admission Control which has the following configuration:
CloudaccountKubernetesId string
The id of the account in Dome9.
ImageAssurance CloudaccountKubernetesImageAssurance
Image Assurance which has the following configuration:
Name string
The name of the kubernetes cluster as it will appear in Dome9 kubernetes cloud account.
OrganizationalUnitId string
The Organizational Unit this cloud account will be attached to
RuntimeProtection CloudaccountKubernetesRuntimeProtection
Runtime Protection which has the following configuration:
ThreatIntelligence CloudaccountKubernetesThreatIntelligence
Threat Intelligence which has the following configuration:
AdmissionControl CloudaccountKubernetesAdmissionControlArgs
Admission Control which has the following configuration:
CloudaccountKubernetesId string
The id of the account in Dome9.
ImageAssurance CloudaccountKubernetesImageAssuranceArgs
Image Assurance which has the following configuration:
Name string
The name of the kubernetes cluster as it will appear in Dome9 kubernetes cloud account.
OrganizationalUnitId string
The Organizational Unit this cloud account will be attached to
RuntimeProtection CloudaccountKubernetesRuntimeProtectionArgs
Runtime Protection which has the following configuration:
ThreatIntelligence CloudaccountKubernetesThreatIntelligenceArgs
Threat Intelligence which has the following configuration:
admissionControl CloudaccountKubernetesAdmissionControl
Admission Control which has the following configuration:
cloudaccountKubernetesId String
The id of the account in Dome9.
imageAssurance CloudaccountKubernetesImageAssurance
Image Assurance which has the following configuration:
name String
The name of the kubernetes cluster as it will appear in Dome9 kubernetes cloud account.
organizationalUnitId String
The Organizational Unit this cloud account will be attached to
runtimeProtection CloudaccountKubernetesRuntimeProtection
Runtime Protection which has the following configuration:
threatIntelligence CloudaccountKubernetesThreatIntelligence
Threat Intelligence which has the following configuration:
admissionControl CloudaccountKubernetesAdmissionControl
Admission Control which has the following configuration:
cloudaccountKubernetesId string
The id of the account in Dome9.
imageAssurance CloudaccountKubernetesImageAssurance
Image Assurance which has the following configuration:
name string
The name of the kubernetes cluster as it will appear in Dome9 kubernetes cloud account.
organizationalUnitId string
The Organizational Unit this cloud account will be attached to
runtimeProtection CloudaccountKubernetesRuntimeProtection
Runtime Protection which has the following configuration:
threatIntelligence CloudaccountKubernetesThreatIntelligence
Threat Intelligence which has the following configuration:
admission_control CloudaccountKubernetesAdmissionControlArgs
Admission Control which has the following configuration:
cloudaccount_kubernetes_id str
The id of the account in Dome9.
image_assurance CloudaccountKubernetesImageAssuranceArgs
Image Assurance which has the following configuration:
name str
The name of the kubernetes cluster as it will appear in Dome9 kubernetes cloud account.
organizational_unit_id str
The Organizational Unit this cloud account will be attached to
runtime_protection CloudaccountKubernetesRuntimeProtectionArgs
Runtime Protection which has the following configuration:
threat_intelligence CloudaccountKubernetesThreatIntelligenceArgs
Threat Intelligence which has the following configuration:
admissionControl Property Map
Admission Control which has the following configuration:
cloudaccountKubernetesId String
The id of the account in Dome9.
imageAssurance Property Map
Image Assurance which has the following configuration:
name String
The name of the kubernetes cluster as it will appear in Dome9 kubernetes cloud account.
organizationalUnitId String
The Organizational Unit this cloud account will be attached to
runtimeProtection Property Map
Runtime Protection which has the following configuration:
threatIntelligence Property Map
Threat Intelligence which has the following configuration:

Outputs

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

ClusterVersion string
The onboarded cluster version.
CreationDate string
Date account was onboarded to Dome9.
Id string
The provider-assigned unique ID for this managed resource.
OrganizationalUnitName string
Organizational unit name.
OrganizationalUnitPath string
Organizational unit path.
Vendor string
The cloud provider ("kubernetes").
ClusterVersion string
The onboarded cluster version.
CreationDate string
Date account was onboarded to Dome9.
Id string
The provider-assigned unique ID for this managed resource.
OrganizationalUnitName string
Organizational unit name.
OrganizationalUnitPath string
Organizational unit path.
Vendor string
The cloud provider ("kubernetes").
clusterVersion String
The onboarded cluster version.
creationDate String
Date account was onboarded to Dome9.
id String
The provider-assigned unique ID for this managed resource.
organizationalUnitName String
Organizational unit name.
organizationalUnitPath String
Organizational unit path.
vendor String
The cloud provider ("kubernetes").
clusterVersion string
The onboarded cluster version.
creationDate string
Date account was onboarded to Dome9.
id string
The provider-assigned unique ID for this managed resource.
organizationalUnitName string
Organizational unit name.
organizationalUnitPath string
Organizational unit path.
vendor string
The cloud provider ("kubernetes").
cluster_version str
The onboarded cluster version.
creation_date str
Date account was onboarded to Dome9.
id str
The provider-assigned unique ID for this managed resource.
organizational_unit_name str
Organizational unit name.
organizational_unit_path str
Organizational unit path.
vendor str
The cloud provider ("kubernetes").
clusterVersion String
The onboarded cluster version.
creationDate String
Date account was onboarded to Dome9.
id String
The provider-assigned unique ID for this managed resource.
organizationalUnitName String
Organizational unit name.
organizationalUnitPath String
Organizational unit path.
vendor String
The cloud provider ("kubernetes").

Look up Existing CloudaccountKubernetes Resource

Get an existing CloudaccountKubernetes 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?: CloudaccountKubernetesState, opts?: CustomResourceOptions): CloudaccountKubernetes
@staticmethod
def get(resource_name: str,
        id: str,
        opts: Optional[ResourceOptions] = None,
        admission_control: Optional[CloudaccountKubernetesAdmissionControlArgs] = None,
        cloudaccount_kubernetes_id: Optional[str] = None,
        cluster_version: Optional[str] = None,
        creation_date: Optional[str] = None,
        image_assurance: Optional[CloudaccountKubernetesImageAssuranceArgs] = None,
        name: Optional[str] = None,
        organizational_unit_id: Optional[str] = None,
        organizational_unit_name: Optional[str] = None,
        organizational_unit_path: Optional[str] = None,
        runtime_protection: Optional[CloudaccountKubernetesRuntimeProtectionArgs] = None,
        threat_intelligence: Optional[CloudaccountKubernetesThreatIntelligenceArgs] = None,
        vendor: Optional[str] = None) -> CloudaccountKubernetes
func GetCloudaccountKubernetes(ctx *Context, name string, id IDInput, state *CloudaccountKubernetesState, opts ...ResourceOption) (*CloudaccountKubernetes, error)
public static CloudaccountKubernetes Get(string name, Input<string> id, CloudaccountKubernetesState? state, CustomResourceOptions? opts = null)
public static CloudaccountKubernetes get(String name, Output<String> id, CloudaccountKubernetesState state, CustomResourceOptions options)
resources:  _:    type: dome9:CloudaccountKubernetes    get:      id: ${id}
name This property is required.
The unique name of the resulting resource.
id This property is required.
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 This property is required.
The unique name of the resulting resource.
id This property is required.
The unique provider ID of the resource to lookup.
name This property is required.
The unique name of the resulting resource.
id This property is required.
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 This property is required.
The unique name of the resulting resource.
id This property is required.
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 This property is required.
The unique name of the resulting resource.
id This property is required.
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:
AdmissionControl CloudaccountKubernetesAdmissionControl
Admission Control which has the following configuration:
CloudaccountKubernetesId string
The id of the account in Dome9.
ClusterVersion string
The onboarded cluster version.
CreationDate string
Date account was onboarded to Dome9.
ImageAssurance CloudaccountKubernetesImageAssurance
Image Assurance which has the following configuration:
Name string
The name of the kubernetes cluster as it will appear in Dome9 kubernetes cloud account.
OrganizationalUnitId string
The Organizational Unit this cloud account will be attached to
OrganizationalUnitName string
Organizational unit name.
OrganizationalUnitPath string
Organizational unit path.
RuntimeProtection CloudaccountKubernetesRuntimeProtection
Runtime Protection which has the following configuration:
ThreatIntelligence CloudaccountKubernetesThreatIntelligence
Threat Intelligence which has the following configuration:
Vendor string
The cloud provider ("kubernetes").
AdmissionControl CloudaccountKubernetesAdmissionControlArgs
Admission Control which has the following configuration:
CloudaccountKubernetesId string
The id of the account in Dome9.
ClusterVersion string
The onboarded cluster version.
CreationDate string
Date account was onboarded to Dome9.
ImageAssurance CloudaccountKubernetesImageAssuranceArgs
Image Assurance which has the following configuration:
Name string
The name of the kubernetes cluster as it will appear in Dome9 kubernetes cloud account.
OrganizationalUnitId string
The Organizational Unit this cloud account will be attached to
OrganizationalUnitName string
Organizational unit name.
OrganizationalUnitPath string
Organizational unit path.
RuntimeProtection CloudaccountKubernetesRuntimeProtectionArgs
Runtime Protection which has the following configuration:
ThreatIntelligence CloudaccountKubernetesThreatIntelligenceArgs
Threat Intelligence which has the following configuration:
Vendor string
The cloud provider ("kubernetes").
admissionControl CloudaccountKubernetesAdmissionControl
Admission Control which has the following configuration:
cloudaccountKubernetesId String
The id of the account in Dome9.
clusterVersion String
The onboarded cluster version.
creationDate String
Date account was onboarded to Dome9.
imageAssurance CloudaccountKubernetesImageAssurance
Image Assurance which has the following configuration:
name String
The name of the kubernetes cluster as it will appear in Dome9 kubernetes cloud account.
organizationalUnitId String
The Organizational Unit this cloud account will be attached to
organizationalUnitName String
Organizational unit name.
organizationalUnitPath String
Organizational unit path.
runtimeProtection CloudaccountKubernetesRuntimeProtection
Runtime Protection which has the following configuration:
threatIntelligence CloudaccountKubernetesThreatIntelligence
Threat Intelligence which has the following configuration:
vendor String
The cloud provider ("kubernetes").
admissionControl CloudaccountKubernetesAdmissionControl
Admission Control which has the following configuration:
cloudaccountKubernetesId string
The id of the account in Dome9.
clusterVersion string
The onboarded cluster version.
creationDate string
Date account was onboarded to Dome9.
imageAssurance CloudaccountKubernetesImageAssurance
Image Assurance which has the following configuration:
name string
The name of the kubernetes cluster as it will appear in Dome9 kubernetes cloud account.
organizationalUnitId string
The Organizational Unit this cloud account will be attached to
organizationalUnitName string
Organizational unit name.
organizationalUnitPath string
Organizational unit path.
runtimeProtection CloudaccountKubernetesRuntimeProtection
Runtime Protection which has the following configuration:
threatIntelligence CloudaccountKubernetesThreatIntelligence
Threat Intelligence which has the following configuration:
vendor string
The cloud provider ("kubernetes").
admission_control CloudaccountKubernetesAdmissionControlArgs
Admission Control which has the following configuration:
cloudaccount_kubernetes_id str
The id of the account in Dome9.
cluster_version str
The onboarded cluster version.
creation_date str
Date account was onboarded to Dome9.
image_assurance CloudaccountKubernetesImageAssuranceArgs
Image Assurance which has the following configuration:
name str
The name of the kubernetes cluster as it will appear in Dome9 kubernetes cloud account.
organizational_unit_id str
The Organizational Unit this cloud account will be attached to
organizational_unit_name str
Organizational unit name.
organizational_unit_path str
Organizational unit path.
runtime_protection CloudaccountKubernetesRuntimeProtectionArgs
Runtime Protection which has the following configuration:
threat_intelligence CloudaccountKubernetesThreatIntelligenceArgs
Threat Intelligence which has the following configuration:
vendor str
The cloud provider ("kubernetes").
admissionControl Property Map
Admission Control which has the following configuration:
cloudaccountKubernetesId String
The id of the account in Dome9.
clusterVersion String
The onboarded cluster version.
creationDate String
Date account was onboarded to Dome9.
imageAssurance Property Map
Image Assurance which has the following configuration:
name String
The name of the kubernetes cluster as it will appear in Dome9 kubernetes cloud account.
organizationalUnitId String
The Organizational Unit this cloud account will be attached to
organizationalUnitName String
Organizational unit name.
organizationalUnitPath String
Organizational unit path.
runtimeProtection Property Map
Runtime Protection which has the following configuration:
threatIntelligence Property Map
Threat Intelligence which has the following configuration:
vendor String
The cloud provider ("kubernetes").

Supporting Types

CloudaccountKubernetesAdmissionControl
, CloudaccountKubernetesAdmissionControlArgs

Enabled This property is required. bool
Is Admission Control enabled
Enabled This property is required. bool
Is Admission Control enabled
enabled This property is required. Boolean
Is Admission Control enabled
enabled This property is required. boolean
Is Admission Control enabled
enabled This property is required. bool
Is Admission Control enabled
enabled This property is required. Boolean
Is Admission Control enabled

CloudaccountKubernetesImageAssurance
, CloudaccountKubernetesImageAssuranceArgs

Enabled This property is required. bool
Is Image Assurance enabled
Enabled This property is required. bool
Is Image Assurance enabled
enabled This property is required. Boolean
Is Image Assurance enabled
enabled This property is required. boolean
Is Image Assurance enabled
enabled This property is required. bool
Is Image Assurance enabled
enabled This property is required. Boolean
Is Image Assurance enabled

CloudaccountKubernetesRuntimeProtection
, CloudaccountKubernetesRuntimeProtectionArgs

Enabled This property is required. bool
Is Runtime Protection enabled
Enabled This property is required. bool
Is Runtime Protection enabled
enabled This property is required. Boolean
Is Runtime Protection enabled
enabled This property is required. boolean
Is Runtime Protection enabled
enabled This property is required. bool
Is Runtime Protection enabled
enabled This property is required. Boolean
Is Runtime Protection enabled

CloudaccountKubernetesThreatIntelligence
, CloudaccountKubernetesThreatIntelligenceArgs

Enabled This property is required. bool
Is Threat intelligence enabled
Enabled This property is required. bool
Is Threat intelligence enabled
enabled This property is required. Boolean
Is Threat intelligence enabled
enabled This property is required. boolean
Is Threat intelligence enabled
enabled This property is required. bool
Is Threat intelligence enabled
enabled This property is required. Boolean
Is Threat intelligence enabled

Import

Kubernetes cloud account can be imported; use <KUBERNETES CLOUD ACCOUNT ID> as the import ID.

For example:

$ pulumi import dome9:index/cloudaccountKubernetes:CloudaccountKubernetes test 00000000-0000-0000-0000-000000000000
Copy

To learn more about importing existing cloud resources, see Importing resources.

Package Details

Repository
dome9 dome9/terraform-provider-dome9
License
Notes
This Pulumi package is based on the dome9 Terraform Provider.