1. Packages
  2. Sysdig Provider
  3. API Docs
  4. SecureCloudAuthAccountFeature
sysdig 1.53.0 published on Thursday, Apr 17, 2025 by sysdiglabs

sysdig.SecureCloudAuthAccountFeature

Explore with Pulumi AI

Example Usage

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

const sampleSecureCloudAuthAccount = new sysdig.SecureCloudAuthAccount("sampleSecureCloudAuthAccount", {
    providerId: "mygcpproject",
    providerType: "PROVIDER_GCP",
    enabled: true,
});
const sampleSecureCloudAuthAccountComponent = new sysdig.SecureCloudAuthAccountComponent("sampleSecureCloudAuthAccountComponent", {
    accountId: sampleSecureCloudAuthAccount.secureCloudAuthAccountId,
    type: "COMPONENT_SERVICE_PRINCIPAL",
    instance: "secure-scanning",
    servicePrincipalMetadata: JSON.stringify({
        gcp: {
            workload_identity_federation: {
                pool_provider_id: "some-pool-provider-id",
            },
            email: "some-service-account-email",
        },
    }),
});
const sampleSecureCloudAuthAccountFeature = new sysdig.SecureCloudAuthAccountFeature("sampleSecureCloudAuthAccountFeature", {
    accountId: sampleSecureCloudAuthAccount.secureCloudAuthAccountId,
    type: "FEATURE_SECURE_AGENTLESS_SCANNING",
    enabled: true,
    components: ["COMPONENT_SERVICE_PRINCIPAL/secure-scanning"],
    flags: {
        SCANNING_HOST_CONTAINER_ENABLED: "true",
    },
}, {
    dependsOn: [sampleSecureCloudAuthAccountComponent],
});
Copy
import pulumi
import json
import pulumi_sysdig as sysdig

sample_secure_cloud_auth_account = sysdig.SecureCloudAuthAccount("sampleSecureCloudAuthAccount",
    provider_id="mygcpproject",
    provider_type="PROVIDER_GCP",
    enabled=True)
sample_secure_cloud_auth_account_component = sysdig.SecureCloudAuthAccountComponent("sampleSecureCloudAuthAccountComponent",
    account_id=sample_secure_cloud_auth_account.secure_cloud_auth_account_id,
    type="COMPONENT_SERVICE_PRINCIPAL",
    instance="secure-scanning",
    service_principal_metadata=json.dumps({
        "gcp": {
            "workload_identity_federation": {
                "pool_provider_id": "some-pool-provider-id",
            },
            "email": "some-service-account-email",
        },
    }))
sample_secure_cloud_auth_account_feature = sysdig.SecureCloudAuthAccountFeature("sampleSecureCloudAuthAccountFeature",
    account_id=sample_secure_cloud_auth_account.secure_cloud_auth_account_id,
    type="FEATURE_SECURE_AGENTLESS_SCANNING",
    enabled=True,
    components=["COMPONENT_SERVICE_PRINCIPAL/secure-scanning"],
    flags={
        "SCANNING_HOST_CONTAINER_ENABLED": "true",
    },
    opts = pulumi.ResourceOptions(depends_on=[sample_secure_cloud_auth_account_component]))
Copy
package main

import (
	"encoding/json"

	"github.com/pulumi/pulumi-terraform-provider/sdks/go/sysdig/sysdig"
	"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
)

func main() {
	pulumi.Run(func(ctx *pulumi.Context) error {
		sampleSecureCloudAuthAccount, err := sysdig.NewSecureCloudAuthAccount(ctx, "sampleSecureCloudAuthAccount", &sysdig.SecureCloudAuthAccountArgs{
			ProviderId:   pulumi.String("mygcpproject"),
			ProviderType: pulumi.String("PROVIDER_GCP"),
			Enabled:      pulumi.Bool(true),
		})
		if err != nil {
			return err
		}
		tmpJSON0, err := json.Marshal(map[string]interface{}{
			"gcp": map[string]interface{}{
				"workload_identity_federation": map[string]interface{}{
					"pool_provider_id": "some-pool-provider-id",
				},
				"email": "some-service-account-email",
			},
		})
		if err != nil {
			return err
		}
		json0 := string(tmpJSON0)
		sampleSecureCloudAuthAccountComponent, err := sysdig.NewSecureCloudAuthAccountComponent(ctx, "sampleSecureCloudAuthAccountComponent", &sysdig.SecureCloudAuthAccountComponentArgs{
			AccountId:                sampleSecureCloudAuthAccount.SecureCloudAuthAccountId,
			Type:                     pulumi.String("COMPONENT_SERVICE_PRINCIPAL"),
			Instance:                 pulumi.String("secure-scanning"),
			ServicePrincipalMetadata: pulumi.String(json0),
		})
		if err != nil {
			return err
		}
		_, err = sysdig.NewSecureCloudAuthAccountFeature(ctx, "sampleSecureCloudAuthAccountFeature", &sysdig.SecureCloudAuthAccountFeatureArgs{
			AccountId: sampleSecureCloudAuthAccount.SecureCloudAuthAccountId,
			Type:      pulumi.String("FEATURE_SECURE_AGENTLESS_SCANNING"),
			Enabled:   pulumi.Bool(true),
			Components: pulumi.StringArray{
				pulumi.String("COMPONENT_SERVICE_PRINCIPAL/secure-scanning"),
			},
			Flags: pulumi.StringMap{
				"SCANNING_HOST_CONTAINER_ENABLED": pulumi.String("true"),
			},
		}, pulumi.DependsOn([]pulumi.Resource{
			sampleSecureCloudAuthAccountComponent,
		}))
		if err != nil {
			return err
		}
		return nil
	})
}
Copy
using System.Collections.Generic;
using System.Linq;
using System.Text.Json;
using Pulumi;
using Sysdig = Pulumi.Sysdig;

return await Deployment.RunAsync(() => 
{
    var sampleSecureCloudAuthAccount = new Sysdig.SecureCloudAuthAccount("sampleSecureCloudAuthAccount", new()
    {
        ProviderId = "mygcpproject",
        ProviderType = "PROVIDER_GCP",
        Enabled = true,
    });

    var sampleSecureCloudAuthAccountComponent = new Sysdig.SecureCloudAuthAccountComponent("sampleSecureCloudAuthAccountComponent", new()
    {
        AccountId = sampleSecureCloudAuthAccount.SecureCloudAuthAccountId,
        Type = "COMPONENT_SERVICE_PRINCIPAL",
        Instance = "secure-scanning",
        ServicePrincipalMetadata = JsonSerializer.Serialize(new Dictionary<string, object?>
        {
            ["gcp"] = new Dictionary<string, object?>
            {
                ["workload_identity_federation"] = new Dictionary<string, object?>
                {
                    ["pool_provider_id"] = "some-pool-provider-id",
                },
                ["email"] = "some-service-account-email",
            },
        }),
    });

    var sampleSecureCloudAuthAccountFeature = new Sysdig.SecureCloudAuthAccountFeature("sampleSecureCloudAuthAccountFeature", new()
    {
        AccountId = sampleSecureCloudAuthAccount.SecureCloudAuthAccountId,
        Type = "FEATURE_SECURE_AGENTLESS_SCANNING",
        Enabled = true,
        Components = new[]
        {
            "COMPONENT_SERVICE_PRINCIPAL/secure-scanning",
        },
        Flags = 
        {
            { "SCANNING_HOST_CONTAINER_ENABLED", "true" },
        },
    }, new CustomResourceOptions
    {
        DependsOn =
        {
            sampleSecureCloudAuthAccountComponent,
        },
    });

});
Copy
package generated_program;

import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.sysdig.SecureCloudAuthAccount;
import com.pulumi.sysdig.SecureCloudAuthAccountArgs;
import com.pulumi.sysdig.SecureCloudAuthAccountComponent;
import com.pulumi.sysdig.SecureCloudAuthAccountComponentArgs;
import com.pulumi.sysdig.SecureCloudAuthAccountFeature;
import com.pulumi.sysdig.SecureCloudAuthAccountFeatureArgs;
import static com.pulumi.codegen.internal.Serialization.*;
import com.pulumi.resources.CustomResourceOptions;
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 sampleSecureCloudAuthAccount = new SecureCloudAuthAccount("sampleSecureCloudAuthAccount", SecureCloudAuthAccountArgs.builder()
            .providerId("mygcpproject")
            .providerType("PROVIDER_GCP")
            .enabled(true)
            .build());

        var sampleSecureCloudAuthAccountComponent = new SecureCloudAuthAccountComponent("sampleSecureCloudAuthAccountComponent", SecureCloudAuthAccountComponentArgs.builder()
            .accountId(sampleSecureCloudAuthAccount.secureCloudAuthAccountId())
            .type("COMPONENT_SERVICE_PRINCIPAL")
            .instance("secure-scanning")
            .servicePrincipalMetadata(serializeJson(
                jsonObject(
                    jsonProperty("gcp", jsonObject(
                        jsonProperty("workload_identity_federation", jsonObject(
                            jsonProperty("pool_provider_id", "some-pool-provider-id")
                        )),
                        jsonProperty("email", "some-service-account-email")
                    ))
                )))
            .build());

        var sampleSecureCloudAuthAccountFeature = new SecureCloudAuthAccountFeature("sampleSecureCloudAuthAccountFeature", SecureCloudAuthAccountFeatureArgs.builder()
            .accountId(sampleSecureCloudAuthAccount.secureCloudAuthAccountId())
            .type("FEATURE_SECURE_AGENTLESS_SCANNING")
            .enabled(true)
            .components("COMPONENT_SERVICE_PRINCIPAL/secure-scanning")
            .flags(Map.of("SCANNING_HOST_CONTAINER_ENABLED", "true"))
            .build(), CustomResourceOptions.builder()
                .dependsOn(sampleSecureCloudAuthAccountComponent)
                .build());

    }
}
Copy
resources:
  sampleSecureCloudAuthAccount:
    type: sysdig:SecureCloudAuthAccount
    properties:
      providerId: mygcpproject
      providerType: PROVIDER_GCP
      enabled: true
  sampleSecureCloudAuthAccountComponent:
    type: sysdig:SecureCloudAuthAccountComponent
    properties:
      accountId: ${sampleSecureCloudAuthAccount.secureCloudAuthAccountId}
      type: COMPONENT_SERVICE_PRINCIPAL
      instance: secure-scanning
      servicePrincipalMetadata:
        fn::toJSON:
          gcp:
            workload_identity_federation:
              pool_provider_id: some-pool-provider-id
            email: some-service-account-email
  sampleSecureCloudAuthAccountFeature:
    type: sysdig:SecureCloudAuthAccountFeature
    properties:
      accountId: ${sampleSecureCloudAuthAccount.secureCloudAuthAccountId}
      type: FEATURE_SECURE_AGENTLESS_SCANNING
      enabled: true
      components:
        - COMPONENT_SERVICE_PRINCIPAL/secure-scanning
      flags:
        SCANNING_HOST_CONTAINER_ENABLED: 'true'
    options:
      dependsOn:
        - ${sampleSecureCloudAuthAccountComponent}
Copy

Create SecureCloudAuthAccountFeature Resource

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

Constructor syntax

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

@overload
def SecureCloudAuthAccountFeature(resource_name: str,
                                  opts: Optional[ResourceOptions] = None,
                                  account_id: Optional[str] = None,
                                  components: Optional[Sequence[str]] = None,
                                  enabled: Optional[bool] = None,
                                  type: Optional[str] = None,
                                  flags: Optional[Mapping[str, str]] = None,
                                  secure_cloud_auth_account_feature_id: Optional[str] = None,
                                  timeouts: Optional[SecureCloudAuthAccountFeatureTimeoutsArgs] = None)
func NewSecureCloudAuthAccountFeature(ctx *Context, name string, args SecureCloudAuthAccountFeatureArgs, opts ...ResourceOption) (*SecureCloudAuthAccountFeature, error)
public SecureCloudAuthAccountFeature(string name, SecureCloudAuthAccountFeatureArgs args, CustomResourceOptions? opts = null)
public SecureCloudAuthAccountFeature(String name, SecureCloudAuthAccountFeatureArgs args)
public SecureCloudAuthAccountFeature(String name, SecureCloudAuthAccountFeatureArgs args, CustomResourceOptions options)
type: sysdig:SecureCloudAuthAccountFeature
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 This property is required. SecureCloudAuthAccountFeatureArgs
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 This property is required. SecureCloudAuthAccountFeatureInitArgs
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 This property is required. SecureCloudAuthAccountFeatureArgs
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 This property is required. SecureCloudAuthAccountFeatureArgs
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. SecureCloudAuthAccountFeatureArgs
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 secureCloudAuthAccountFeatureResource = new Sysdig.SecureCloudAuthAccountFeature("secureCloudAuthAccountFeatureResource", new()
{
    AccountId = "string",
    Components = new[]
    {
        "string",
    },
    Enabled = false,
    Type = "string",
    Flags = 
    {
        { "string", "string" },
    },
    SecureCloudAuthAccountFeatureId = "string",
    Timeouts = new Sysdig.Inputs.SecureCloudAuthAccountFeatureTimeoutsArgs
    {
        Create = "string",
        Delete = "string",
        Read = "string",
        Update = "string",
    },
});
Copy
example, err := sysdig.NewSecureCloudAuthAccountFeature(ctx, "secureCloudAuthAccountFeatureResource", &sysdig.SecureCloudAuthAccountFeatureArgs{
AccountId: pulumi.String("string"),
Components: pulumi.StringArray{
pulumi.String("string"),
},
Enabled: pulumi.Bool(false),
Type: pulumi.String("string"),
Flags: pulumi.StringMap{
"string": pulumi.String("string"),
},
SecureCloudAuthAccountFeatureId: pulumi.String("string"),
Timeouts: &.SecureCloudAuthAccountFeatureTimeoutsArgs{
Create: pulumi.String("string"),
Delete: pulumi.String("string"),
Read: pulumi.String("string"),
Update: pulumi.String("string"),
},
})
Copy
var secureCloudAuthAccountFeatureResource = new SecureCloudAuthAccountFeature("secureCloudAuthAccountFeatureResource", SecureCloudAuthAccountFeatureArgs.builder()
    .accountId("string")
    .components("string")
    .enabled(false)
    .type("string")
    .flags(Map.of("string", "string"))
    .secureCloudAuthAccountFeatureId("string")
    .timeouts(SecureCloudAuthAccountFeatureTimeoutsArgs.builder()
        .create("string")
        .delete("string")
        .read("string")
        .update("string")
        .build())
    .build());
Copy
secure_cloud_auth_account_feature_resource = sysdig.SecureCloudAuthAccountFeature("secureCloudAuthAccountFeatureResource",
    account_id="string",
    components=["string"],
    enabled=False,
    type="string",
    flags={
        "string": "string",
    },
    secure_cloud_auth_account_feature_id="string",
    timeouts={
        "create": "string",
        "delete": "string",
        "read": "string",
        "update": "string",
    })
Copy
const secureCloudAuthAccountFeatureResource = new sysdig.SecureCloudAuthAccountFeature("secureCloudAuthAccountFeatureResource", {
    accountId: "string",
    components: ["string"],
    enabled: false,
    type: "string",
    flags: {
        string: "string",
    },
    secureCloudAuthAccountFeatureId: "string",
    timeouts: {
        create: "string",
        "delete": "string",
        read: "string",
        update: "string",
    },
});
Copy
type: sysdig:SecureCloudAuthAccountFeature
properties:
    accountId: string
    components:
        - string
    enabled: false
    flags:
        string: string
    secureCloudAuthAccountFeatureId: string
    timeouts:
        create: string
        delete: string
        read: string
        update: string
    type: string
Copy

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

AccountId This property is required. string
Cloud Account created using resource sysdig_secure_cloud_auth_account.
Components This property is required. List<string>
Based on the feature type to be created, this is the list of components to be enabled on the cloud account.
Enabled This property is required. bool
Whether or not to enable this feature on the given cloud account.
Type This property is required. string
The type of feature to be created/added. e.g. FEATURE_SECURE_CONFIG_POSTURE.
Flags Dictionary<string, string>
SecureCloudAuthAccountFeatureId string
Timeouts SecureCloudAuthAccountFeatureTimeouts
AccountId This property is required. string
Cloud Account created using resource sysdig_secure_cloud_auth_account.
Components This property is required. []string
Based on the feature type to be created, this is the list of components to be enabled on the cloud account.
Enabled This property is required. bool
Whether or not to enable this feature on the given cloud account.
Type This property is required. string
The type of feature to be created/added. e.g. FEATURE_SECURE_CONFIG_POSTURE.
Flags map[string]string
SecureCloudAuthAccountFeatureId string
Timeouts SecureCloudAuthAccountFeatureTimeoutsArgs
accountId This property is required. String
Cloud Account created using resource sysdig_secure_cloud_auth_account.
components This property is required. List<String>
Based on the feature type to be created, this is the list of components to be enabled on the cloud account.
enabled This property is required. Boolean
Whether or not to enable this feature on the given cloud account.
type This property is required. String
The type of feature to be created/added. e.g. FEATURE_SECURE_CONFIG_POSTURE.
flags Map<String,String>
secureCloudAuthAccountFeatureId String
timeouts SecureCloudAuthAccountFeatureTimeouts
accountId This property is required. string
Cloud Account created using resource sysdig_secure_cloud_auth_account.
components This property is required. string[]
Based on the feature type to be created, this is the list of components to be enabled on the cloud account.
enabled This property is required. boolean
Whether or not to enable this feature on the given cloud account.
type This property is required. string
The type of feature to be created/added. e.g. FEATURE_SECURE_CONFIG_POSTURE.
flags {[key: string]: string}
secureCloudAuthAccountFeatureId string
timeouts SecureCloudAuthAccountFeatureTimeouts
account_id This property is required. str
Cloud Account created using resource sysdig_secure_cloud_auth_account.
components This property is required. Sequence[str]
Based on the feature type to be created, this is the list of components to be enabled on the cloud account.
enabled This property is required. bool
Whether or not to enable this feature on the given cloud account.
type This property is required. str
The type of feature to be created/added. e.g. FEATURE_SECURE_CONFIG_POSTURE.
flags Mapping[str, str]
secure_cloud_auth_account_feature_id str
timeouts SecureCloudAuthAccountFeatureTimeoutsArgs
accountId This property is required. String
Cloud Account created using resource sysdig_secure_cloud_auth_account.
components This property is required. List<String>
Based on the feature type to be created, this is the list of components to be enabled on the cloud account.
enabled This property is required. Boolean
Whether or not to enable this feature on the given cloud account.
type This property is required. String
The type of feature to be created/added. e.g. FEATURE_SECURE_CONFIG_POSTURE.
flags Map<String>
secureCloudAuthAccountFeatureId String
timeouts Property Map

Outputs

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

Id string
The provider-assigned unique ID for this managed resource.
Id string
The provider-assigned unique ID for this managed resource.
id String
The provider-assigned unique ID for this managed resource.
id string
The provider-assigned unique ID for this managed resource.
id str
The provider-assigned unique ID for this managed resource.
id String
The provider-assigned unique ID for this managed resource.

Look up Existing SecureCloudAuthAccountFeature Resource

Get an existing SecureCloudAuthAccountFeature 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?: SecureCloudAuthAccountFeatureState, opts?: CustomResourceOptions): SecureCloudAuthAccountFeature
@staticmethod
def get(resource_name: str,
        id: str,
        opts: Optional[ResourceOptions] = None,
        account_id: Optional[str] = None,
        components: Optional[Sequence[str]] = None,
        enabled: Optional[bool] = None,
        flags: Optional[Mapping[str, str]] = None,
        secure_cloud_auth_account_feature_id: Optional[str] = None,
        timeouts: Optional[SecureCloudAuthAccountFeatureTimeoutsArgs] = None,
        type: Optional[str] = None) -> SecureCloudAuthAccountFeature
func GetSecureCloudAuthAccountFeature(ctx *Context, name string, id IDInput, state *SecureCloudAuthAccountFeatureState, opts ...ResourceOption) (*SecureCloudAuthAccountFeature, error)
public static SecureCloudAuthAccountFeature Get(string name, Input<string> id, SecureCloudAuthAccountFeatureState? state, CustomResourceOptions? opts = null)
public static SecureCloudAuthAccountFeature get(String name, Output<String> id, SecureCloudAuthAccountFeatureState state, CustomResourceOptions options)
resources:  _:    type: sysdig:SecureCloudAuthAccountFeature    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:
AccountId string
Cloud Account created using resource sysdig_secure_cloud_auth_account.
Components List<string>
Based on the feature type to be created, this is the list of components to be enabled on the cloud account.
Enabled bool
Whether or not to enable this feature on the given cloud account.
Flags Dictionary<string, string>
SecureCloudAuthAccountFeatureId string
Timeouts SecureCloudAuthAccountFeatureTimeouts
Type string
The type of feature to be created/added. e.g. FEATURE_SECURE_CONFIG_POSTURE.
AccountId string
Cloud Account created using resource sysdig_secure_cloud_auth_account.
Components []string
Based on the feature type to be created, this is the list of components to be enabled on the cloud account.
Enabled bool
Whether or not to enable this feature on the given cloud account.
Flags map[string]string
SecureCloudAuthAccountFeatureId string
Timeouts SecureCloudAuthAccountFeatureTimeoutsArgs
Type string
The type of feature to be created/added. e.g. FEATURE_SECURE_CONFIG_POSTURE.
accountId String
Cloud Account created using resource sysdig_secure_cloud_auth_account.
components List<String>
Based on the feature type to be created, this is the list of components to be enabled on the cloud account.
enabled Boolean
Whether or not to enable this feature on the given cloud account.
flags Map<String,String>
secureCloudAuthAccountFeatureId String
timeouts SecureCloudAuthAccountFeatureTimeouts
type String
The type of feature to be created/added. e.g. FEATURE_SECURE_CONFIG_POSTURE.
accountId string
Cloud Account created using resource sysdig_secure_cloud_auth_account.
components string[]
Based on the feature type to be created, this is the list of components to be enabled on the cloud account.
enabled boolean
Whether or not to enable this feature on the given cloud account.
flags {[key: string]: string}
secureCloudAuthAccountFeatureId string
timeouts SecureCloudAuthAccountFeatureTimeouts
type string
The type of feature to be created/added. e.g. FEATURE_SECURE_CONFIG_POSTURE.
account_id str
Cloud Account created using resource sysdig_secure_cloud_auth_account.
components Sequence[str]
Based on the feature type to be created, this is the list of components to be enabled on the cloud account.
enabled bool
Whether or not to enable this feature on the given cloud account.
flags Mapping[str, str]
secure_cloud_auth_account_feature_id str
timeouts SecureCloudAuthAccountFeatureTimeoutsArgs
type str
The type of feature to be created/added. e.g. FEATURE_SECURE_CONFIG_POSTURE.
accountId String
Cloud Account created using resource sysdig_secure_cloud_auth_account.
components List<String>
Based on the feature type to be created, this is the list of components to be enabled on the cloud account.
enabled Boolean
Whether or not to enable this feature on the given cloud account.
flags Map<String>
secureCloudAuthAccountFeatureId String
timeouts Property Map
type String
The type of feature to be created/added. e.g. FEATURE_SECURE_CONFIG_POSTURE.

Supporting Types

SecureCloudAuthAccountFeatureTimeouts
, SecureCloudAuthAccountFeatureTimeoutsArgs

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
sysdig sysdiglabs/terraform-provider-sysdig
License
Notes
This Pulumi package is based on the sysdig Terraform Provider.