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],
});
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]))
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
})
}
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,
},
});
});
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());
}
}
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}
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 string
- The unique name of the resource.
- args SecureCloudAuthAccountFeatureArgs
- 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 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 string
- The unique name of the resource.
- args SecureCloudAuthAccountFeatureArgs
- The arguments to resource properties.
- opts ResourceOption
- Bag of options to control resource's behavior.
- name string
- The unique name of the resource.
- args SecureCloudAuthAccountFeatureArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- name String
- The unique name of the resource.
- args 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",
},
});
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: &sysdig.SecureCloudAuthAccountFeatureTimeoutsArgs{
Create: pulumi.String("string"),
Delete: pulumi.String("string"),
Read: pulumi.String("string"),
Update: pulumi.String("string"),
},
})
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());
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",
})
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",
},
});
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
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:
- Account
Id 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.
- Type string
- The type of feature to be created/added. e.g.
FEATURE_SECURE_CONFIG_POSTURE
. - Flags Dictionary<string, string>
- Secure
Cloud stringAuth Account Feature Id - Timeouts
Secure
Cloud Auth Account Feature Timeouts
- Account
Id 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.
- Type string
- The type of feature to be created/added. e.g.
FEATURE_SECURE_CONFIG_POSTURE
. - Flags map[string]string
- Secure
Cloud stringAuth Account Feature Id - Timeouts
Secure
Cloud Auth Account Feature Timeouts Args
- account
Id 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.
- type String
- The type of feature to be created/added. e.g.
FEATURE_SECURE_CONFIG_POSTURE
. - flags Map<String,String>
- secure
Cloud StringAuth Account Feature Id - timeouts
Secure
Cloud Auth Account Feature Timeouts
- account
Id 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.
- type string
- The type of feature to be created/added. e.g.
FEATURE_SECURE_CONFIG_POSTURE
. - flags {[key: string]: string}
- secure
Cloud stringAuth Account Feature Id - timeouts
Secure
Cloud Auth Account Feature Timeouts
- 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.
- type str
- The type of feature to be created/added. e.g.
FEATURE_SECURE_CONFIG_POSTURE
. - flags Mapping[str, str]
- secure_
cloud_ strauth_ account_ feature_ id - timeouts
Secure
Cloud Auth Account Feature Timeouts Args
- account
Id 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.
- type String
- The type of feature to be created/added. e.g.
FEATURE_SECURE_CONFIG_POSTURE
. - flags Map<String>
- secure
Cloud StringAuth Account Feature Id - 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
- 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.
- Account
Id 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>
- Secure
Cloud stringAuth Account Feature Id - Timeouts
Secure
Cloud Auth Account Feature Timeouts - Type string
- The type of feature to be created/added. e.g.
FEATURE_SECURE_CONFIG_POSTURE
.
- Account
Id 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
- Secure
Cloud stringAuth Account Feature Id - Timeouts
Secure
Cloud Auth Account Feature Timeouts Args - Type string
- The type of feature to be created/added. e.g.
FEATURE_SECURE_CONFIG_POSTURE
.
- account
Id 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>
- secure
Cloud StringAuth Account Feature Id - timeouts
Secure
Cloud Auth Account Feature Timeouts - type String
- The type of feature to be created/added. e.g.
FEATURE_SECURE_CONFIG_POSTURE
.
- account
Id 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}
- secure
Cloud stringAuth Account Feature Id - timeouts
Secure
Cloud Auth Account Feature Timeouts - 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_ strauth_ account_ feature_ id - timeouts
Secure
Cloud Auth Account Feature Timeouts Args - type str
- The type of feature to be created/added. e.g.
FEATURE_SECURE_CONFIG_POSTURE
.
- account
Id 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>
- secure
Cloud StringAuth Account Feature Id - timeouts Property Map
- type String
- The type of feature to be created/added. e.g.
FEATURE_SECURE_CONFIG_POSTURE
.
Supporting Types
SecureCloudAuthAccountFeatureTimeouts, SecureCloudAuthAccountFeatureTimeoutsArgs
Package Details
- Repository
- sysdig sysdiglabs/terraform-provider-sysdig
- License
- Notes
- This Pulumi package is based on the
sysdig
Terraform Provider.