dome9.AzureOrganizationOnboarding
Explore with Pulumi AI
Connect an Azure organization to CloudGuard in one quick process.
Example Usage
Basic usage:
import * as pulumi from "@pulumi/pulumi";
import * as dome9 from "@pulumi/dome9";
const test = new dome9.AzureOrganizationOnboarding("test", {
activeBlades: {
awp: {
isEnabled: false,
},
cdr: {
isEnabled: false,
},
postureManagement: {
onboardingMode: "ONBOARDING_MODE",
},
serverless: {
isEnabled: false,
},
},
isAutoOnboarding: false,
managementGroupId: "MANAGEMENT_GROUP_ID",
tenantId: "TENANT_ID",
useCloudGuardManagedApp: false,
vendor: "VENDOR",
});
import pulumi
import pulumi_dome9 as dome9
test = dome9.AzureOrganizationOnboarding("test",
active_blades={
"awp": {
"is_enabled": False,
},
"cdr": {
"is_enabled": False,
},
"posture_management": {
"onboarding_mode": "ONBOARDING_MODE",
},
"serverless": {
"is_enabled": False,
},
},
is_auto_onboarding=False,
management_group_id="MANAGEMENT_GROUP_ID",
tenant_id="TENANT_ID",
use_cloud_guard_managed_app=False,
vendor="VENDOR")
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.NewAzureOrganizationOnboarding(ctx, "test", &dome9.AzureOrganizationOnboardingArgs{
ActiveBlades: &dome9.AzureOrganizationOnboardingActiveBladesArgs{
Awp: &dome9.AzureOrganizationOnboardingActiveBladesAwpArgs{
IsEnabled: pulumi.Bool(false),
},
Cdr: &dome9.AzureOrganizationOnboardingActiveBladesCdrArgs{
IsEnabled: pulumi.Bool(false),
},
PostureManagement: &dome9.AzureOrganizationOnboardingActiveBladesPostureManagementArgs{
OnboardingMode: pulumi.String("ONBOARDING_MODE"),
},
Serverless: &dome9.AzureOrganizationOnboardingActiveBladesServerlessArgs{
IsEnabled: pulumi.Bool(false),
},
},
IsAutoOnboarding: pulumi.Bool(false),
ManagementGroupId: pulumi.String("MANAGEMENT_GROUP_ID"),
TenantId: pulumi.String("TENANT_ID"),
UseCloudGuardManagedApp: pulumi.Bool(false),
Vendor: pulumi.String("VENDOR"),
})
if err != nil {
return err
}
return nil
})
}
using System.Collections.Generic;
using System.Linq;
using Pulumi;
using Dome9 = Pulumi.Dome9;
return await Deployment.RunAsync(() =>
{
var test = new Dome9.AzureOrganizationOnboarding("test", new()
{
ActiveBlades = new Dome9.Inputs.AzureOrganizationOnboardingActiveBladesArgs
{
Awp = new Dome9.Inputs.AzureOrganizationOnboardingActiveBladesAwpArgs
{
IsEnabled = false,
},
Cdr = new Dome9.Inputs.AzureOrganizationOnboardingActiveBladesCdrArgs
{
IsEnabled = false,
},
PostureManagement = new Dome9.Inputs.AzureOrganizationOnboardingActiveBladesPostureManagementArgs
{
OnboardingMode = "ONBOARDING_MODE",
},
Serverless = new Dome9.Inputs.AzureOrganizationOnboardingActiveBladesServerlessArgs
{
IsEnabled = false,
},
},
IsAutoOnboarding = false,
ManagementGroupId = "MANAGEMENT_GROUP_ID",
TenantId = "TENANT_ID",
UseCloudGuardManagedApp = false,
Vendor = "VENDOR",
});
});
package generated_program;
import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.dome9.AzureOrganizationOnboarding;
import com.pulumi.dome9.AzureOrganizationOnboardingArgs;
import com.pulumi.dome9.inputs.AzureOrganizationOnboardingActiveBladesArgs;
import com.pulumi.dome9.inputs.AzureOrganizationOnboardingActiveBladesAwpArgs;
import com.pulumi.dome9.inputs.AzureOrganizationOnboardingActiveBladesCdrArgs;
import com.pulumi.dome9.inputs.AzureOrganizationOnboardingActiveBladesPostureManagementArgs;
import com.pulumi.dome9.inputs.AzureOrganizationOnboardingActiveBladesServerlessArgs;
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 AzureOrganizationOnboarding("test", AzureOrganizationOnboardingArgs.builder()
.activeBlades(AzureOrganizationOnboardingActiveBladesArgs.builder()
.awp(AzureOrganizationOnboardingActiveBladesAwpArgs.builder()
.isEnabled(false)
.build())
.cdr(AzureOrganizationOnboardingActiveBladesCdrArgs.builder()
.isEnabled(false)
.build())
.postureManagement(AzureOrganizationOnboardingActiveBladesPostureManagementArgs.builder()
.onboardingMode("ONBOARDING_MODE")
.build())
.serverless(AzureOrganizationOnboardingActiveBladesServerlessArgs.builder()
.isEnabled(false)
.build())
.build())
.isAutoOnboarding(false)
.managementGroupId("MANAGEMENT_GROUP_ID")
.tenantId("TENANT_ID")
.useCloudGuardManagedApp(false)
.vendor("VENDOR")
.build());
}
}
resources:
test:
type: dome9:AzureOrganizationOnboarding
properties:
activeBlades:
awp:
isEnabled: false
cdr:
isEnabled: false
postureManagement:
onboardingMode: ONBOARDING_MODE
serverless:
isEnabled: false
isAutoOnboarding: false
managementGroupId: MANAGEMENT_GROUP_ID
tenantId: TENANT_ID
useCloudGuardManagedApp: false
vendor: VENDOR
Advanced usage:
import * as pulumi from "@pulumi/pulumi";
import * as dome9 from "@pulumi/dome9";
const test = new dome9.AzureOrganizationOnboarding("test", {
activeBlades: {
awp: {
isEnabled: true,
onboardingMode: "ONBOARDING_MODE",
},
cdr: {
accounts: [{
logTypes: [
"LOG_TYPE1",
"LOG_TYPE2",
],
storageId: "STORAGE_ID",
}],
isEnabled: true,
},
postureManagement: {
onboardingMode: "ONBOARDING_MODE",
},
serverless: {
isEnabled: false,
},
},
isAutoOnboarding: false,
managementGroupId: "MANAGEMENT_GROUP_ID",
tenantId: "TENANT_ID",
useCloudGuardManagedApp: false,
vendor: "VENDOR",
});
import pulumi
import pulumi_dome9 as dome9
test = dome9.AzureOrganizationOnboarding("test",
active_blades={
"awp": {
"is_enabled": True,
"onboarding_mode": "ONBOARDING_MODE",
},
"cdr": {
"accounts": [{
"log_types": [
"LOG_TYPE1",
"LOG_TYPE2",
],
"storage_id": "STORAGE_ID",
}],
"is_enabled": True,
},
"posture_management": {
"onboarding_mode": "ONBOARDING_MODE",
},
"serverless": {
"is_enabled": False,
},
},
is_auto_onboarding=False,
management_group_id="MANAGEMENT_GROUP_ID",
tenant_id="TENANT_ID",
use_cloud_guard_managed_app=False,
vendor="VENDOR")
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.NewAzureOrganizationOnboarding(ctx, "test", &dome9.AzureOrganizationOnboardingArgs{
ActiveBlades: &dome9.AzureOrganizationOnboardingActiveBladesArgs{
Awp: &dome9.AzureOrganizationOnboardingActiveBladesAwpArgs{
IsEnabled: pulumi.Bool(true),
OnboardingMode: pulumi.String("ONBOARDING_MODE"),
},
Cdr: &dome9.AzureOrganizationOnboardingActiveBladesCdrArgs{
Accounts: dome9.AzureOrganizationOnboardingActiveBladesCdrAccountArray{
&dome9.AzureOrganizationOnboardingActiveBladesCdrAccountArgs{
LogTypes: pulumi.StringArray{
pulumi.String("LOG_TYPE1"),
pulumi.String("LOG_TYPE2"),
},
StorageId: pulumi.String("STORAGE_ID"),
},
},
IsEnabled: pulumi.Bool(true),
},
PostureManagement: &dome9.AzureOrganizationOnboardingActiveBladesPostureManagementArgs{
OnboardingMode: pulumi.String("ONBOARDING_MODE"),
},
Serverless: &dome9.AzureOrganizationOnboardingActiveBladesServerlessArgs{
IsEnabled: pulumi.Bool(false),
},
},
IsAutoOnboarding: pulumi.Bool(false),
ManagementGroupId: pulumi.String("MANAGEMENT_GROUP_ID"),
TenantId: pulumi.String("TENANT_ID"),
UseCloudGuardManagedApp: pulumi.Bool(false),
Vendor: pulumi.String("VENDOR"),
})
if err != nil {
return err
}
return nil
})
}
using System.Collections.Generic;
using System.Linq;
using Pulumi;
using Dome9 = Pulumi.Dome9;
return await Deployment.RunAsync(() =>
{
var test = new Dome9.AzureOrganizationOnboarding("test", new()
{
ActiveBlades = new Dome9.Inputs.AzureOrganizationOnboardingActiveBladesArgs
{
Awp = new Dome9.Inputs.AzureOrganizationOnboardingActiveBladesAwpArgs
{
IsEnabled = true,
OnboardingMode = "ONBOARDING_MODE",
},
Cdr = new Dome9.Inputs.AzureOrganizationOnboardingActiveBladesCdrArgs
{
Accounts = new[]
{
new Dome9.Inputs.AzureOrganizationOnboardingActiveBladesCdrAccountArgs
{
LogTypes = new[]
{
"LOG_TYPE1",
"LOG_TYPE2",
},
StorageId = "STORAGE_ID",
},
},
IsEnabled = true,
},
PostureManagement = new Dome9.Inputs.AzureOrganizationOnboardingActiveBladesPostureManagementArgs
{
OnboardingMode = "ONBOARDING_MODE",
},
Serverless = new Dome9.Inputs.AzureOrganizationOnboardingActiveBladesServerlessArgs
{
IsEnabled = false,
},
},
IsAutoOnboarding = false,
ManagementGroupId = "MANAGEMENT_GROUP_ID",
TenantId = "TENANT_ID",
UseCloudGuardManagedApp = false,
Vendor = "VENDOR",
});
});
package generated_program;
import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.dome9.AzureOrganizationOnboarding;
import com.pulumi.dome9.AzureOrganizationOnboardingArgs;
import com.pulumi.dome9.inputs.AzureOrganizationOnboardingActiveBladesArgs;
import com.pulumi.dome9.inputs.AzureOrganizationOnboardingActiveBladesAwpArgs;
import com.pulumi.dome9.inputs.AzureOrganizationOnboardingActiveBladesCdrArgs;
import com.pulumi.dome9.inputs.AzureOrganizationOnboardingActiveBladesPostureManagementArgs;
import com.pulumi.dome9.inputs.AzureOrganizationOnboardingActiveBladesServerlessArgs;
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 AzureOrganizationOnboarding("test", AzureOrganizationOnboardingArgs.builder()
.activeBlades(AzureOrganizationOnboardingActiveBladesArgs.builder()
.awp(AzureOrganizationOnboardingActiveBladesAwpArgs.builder()
.isEnabled(true)
.onboardingMode("ONBOARDING_MODE")
.build())
.cdr(AzureOrganizationOnboardingActiveBladesCdrArgs.builder()
.accounts(AzureOrganizationOnboardingActiveBladesCdrAccountArgs.builder()
.logTypes(
"LOG_TYPE1",
"LOG_TYPE2")
.storageId("STORAGE_ID")
.build())
.isEnabled(true)
.build())
.postureManagement(AzureOrganizationOnboardingActiveBladesPostureManagementArgs.builder()
.onboardingMode("ONBOARDING_MODE")
.build())
.serverless(AzureOrganizationOnboardingActiveBladesServerlessArgs.builder()
.isEnabled(false)
.build())
.build())
.isAutoOnboarding(false)
.managementGroupId("MANAGEMENT_GROUP_ID")
.tenantId("TENANT_ID")
.useCloudGuardManagedApp(false)
.vendor("VENDOR")
.build());
}
}
resources:
test:
type: dome9:AzureOrganizationOnboarding
properties:
activeBlades:
awp:
isEnabled: true
onboardingMode: ONBOARDING_MODE
cdr:
accounts:
- logTypes:
- LOG_TYPE1
- LOG_TYPE2
storageId: STORAGE_ID
isEnabled: true
postureManagement:
onboardingMode: ONBOARDING_MODE
serverless:
isEnabled: false
isAutoOnboarding: false
managementGroupId: MANAGEMENT_GROUP_ID
tenantId: TENANT_ID
useCloudGuardManagedApp: false
vendor: VENDOR
Create AzureOrganizationOnboarding Resource
Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.
Constructor syntax
new AzureOrganizationOnboarding(name: string, args: AzureOrganizationOnboardingArgs, opts?: CustomResourceOptions);
@overload
def AzureOrganizationOnboarding(resource_name: str,
args: AzureOrganizationOnboardingArgs,
opts: Optional[ResourceOptions] = None)
@overload
def AzureOrganizationOnboarding(resource_name: str,
opts: Optional[ResourceOptions] = None,
active_blades: Optional[AzureOrganizationOnboardingActiveBladesArgs] = None,
tenant_id: Optional[str] = None,
vendor: Optional[str] = None,
app_registration_name: Optional[str] = None,
azure_organization_onboarding_id: Optional[str] = None,
client_id: Optional[str] = None,
client_secret: Optional[str] = None,
is_auto_onboarding: Optional[bool] = None,
management_group_id: Optional[str] = None,
organization_name: Optional[str] = None,
use_cloud_guard_managed_app: Optional[bool] = None,
workflow_id: Optional[str] = None)
func NewAzureOrganizationOnboarding(ctx *Context, name string, args AzureOrganizationOnboardingArgs, opts ...ResourceOption) (*AzureOrganizationOnboarding, error)
public AzureOrganizationOnboarding(string name, AzureOrganizationOnboardingArgs args, CustomResourceOptions? opts = null)
public AzureOrganizationOnboarding(String name, AzureOrganizationOnboardingArgs args)
public AzureOrganizationOnboarding(String name, AzureOrganizationOnboardingArgs args, CustomResourceOptions options)
type: dome9:AzureOrganizationOnboarding
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 AzureOrganizationOnboardingArgs
- 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 AzureOrganizationOnboardingArgs
- 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 AzureOrganizationOnboardingArgs
- The arguments to resource properties.
- opts ResourceOption
- Bag of options to control resource's behavior.
- name string
- The unique name of the resource.
- args AzureOrganizationOnboardingArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- name String
- The unique name of the resource.
- args AzureOrganizationOnboardingArgs
- 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 azureOrganizationOnboardingResource = new Dome9.AzureOrganizationOnboarding("azureOrganizationOnboardingResource", new()
{
ActiveBlades = new Dome9.Inputs.AzureOrganizationOnboardingActiveBladesArgs
{
Awp = new Dome9.Inputs.AzureOrganizationOnboardingActiveBladesAwpArgs
{
CentralizedSubscriptionId = "string",
IsEnabled = false,
OnboardingMode = "string",
WithFunctionAppsScan = false,
WithSseCmkEncryptedDisksScan = false,
},
Cdr = new Dome9.Inputs.AzureOrganizationOnboardingActiveBladesCdrArgs
{
Accounts = new[]
{
new Dome9.Inputs.AzureOrganizationOnboardingActiveBladesCdrAccountArgs
{
LogTypes = new[]
{
"string",
},
StorageId = "string",
},
},
IsEnabled = false,
},
PostureManagement = new Dome9.Inputs.AzureOrganizationOnboardingActiveBladesPostureManagementArgs
{
OnboardingMode = "string",
},
Serverless = new Dome9.Inputs.AzureOrganizationOnboardingActiveBladesServerlessArgs
{
IsEnabled = false,
},
},
TenantId = "string",
Vendor = "string",
AppRegistrationName = "string",
AzureOrganizationOnboardingId = "string",
ClientId = "string",
ClientSecret = "string",
IsAutoOnboarding = false,
ManagementGroupId = "string",
OrganizationName = "string",
UseCloudGuardManagedApp = false,
WorkflowId = "string",
});
example, err := dome9.NewAzureOrganizationOnboarding(ctx, "azureOrganizationOnboardingResource", &dome9.AzureOrganizationOnboardingArgs{
ActiveBlades: &.AzureOrganizationOnboardingActiveBladesArgs{
Awp: &.AzureOrganizationOnboardingActiveBladesAwpArgs{
CentralizedSubscriptionId: pulumi.String("string"),
IsEnabled: pulumi.Bool(false),
OnboardingMode: pulumi.String("string"),
WithFunctionAppsScan: pulumi.Bool(false),
WithSseCmkEncryptedDisksScan: pulumi.Bool(false),
},
Cdr: &.AzureOrganizationOnboardingActiveBladesCdrArgs{
Accounts: .AzureOrganizationOnboardingActiveBladesCdrAccountArray{
&.AzureOrganizationOnboardingActiveBladesCdrAccountArgs{
LogTypes: pulumi.StringArray{
pulumi.String("string"),
},
StorageId: pulumi.String("string"),
},
},
IsEnabled: pulumi.Bool(false),
},
PostureManagement: &.AzureOrganizationOnboardingActiveBladesPostureManagementArgs{
OnboardingMode: pulumi.String("string"),
},
Serverless: &.AzureOrganizationOnboardingActiveBladesServerlessArgs{
IsEnabled: pulumi.Bool(false),
},
},
TenantId: pulumi.String("string"),
Vendor: pulumi.String("string"),
AppRegistrationName: pulumi.String("string"),
AzureOrganizationOnboardingId: pulumi.String("string"),
ClientId: pulumi.String("string"),
ClientSecret: pulumi.String("string"),
IsAutoOnboarding: pulumi.Bool(false),
ManagementGroupId: pulumi.String("string"),
OrganizationName: pulumi.String("string"),
UseCloudGuardManagedApp: pulumi.Bool(false),
WorkflowId: pulumi.String("string"),
})
var azureOrganizationOnboardingResource = new AzureOrganizationOnboarding("azureOrganizationOnboardingResource", AzureOrganizationOnboardingArgs.builder()
.activeBlades(AzureOrganizationOnboardingActiveBladesArgs.builder()
.awp(AzureOrganizationOnboardingActiveBladesAwpArgs.builder()
.centralizedSubscriptionId("string")
.isEnabled(false)
.onboardingMode("string")
.withFunctionAppsScan(false)
.withSseCmkEncryptedDisksScan(false)
.build())
.cdr(AzureOrganizationOnboardingActiveBladesCdrArgs.builder()
.accounts(AzureOrganizationOnboardingActiveBladesCdrAccountArgs.builder()
.logTypes("string")
.storageId("string")
.build())
.isEnabled(false)
.build())
.postureManagement(AzureOrganizationOnboardingActiveBladesPostureManagementArgs.builder()
.onboardingMode("string")
.build())
.serverless(AzureOrganizationOnboardingActiveBladesServerlessArgs.builder()
.isEnabled(false)
.build())
.build())
.tenantId("string")
.vendor("string")
.appRegistrationName("string")
.azureOrganizationOnboardingId("string")
.clientId("string")
.clientSecret("string")
.isAutoOnboarding(false)
.managementGroupId("string")
.organizationName("string")
.useCloudGuardManagedApp(false)
.workflowId("string")
.build());
azure_organization_onboarding_resource = dome9.AzureOrganizationOnboarding("azureOrganizationOnboardingResource",
active_blades={
"awp": {
"centralized_subscription_id": "string",
"is_enabled": False,
"onboarding_mode": "string",
"with_function_apps_scan": False,
"with_sse_cmk_encrypted_disks_scan": False,
},
"cdr": {
"accounts": [{
"log_types": ["string"],
"storage_id": "string",
}],
"is_enabled": False,
},
"posture_management": {
"onboarding_mode": "string",
},
"serverless": {
"is_enabled": False,
},
},
tenant_id="string",
vendor="string",
app_registration_name="string",
azure_organization_onboarding_id="string",
client_id="string",
client_secret="string",
is_auto_onboarding=False,
management_group_id="string",
organization_name="string",
use_cloud_guard_managed_app=False,
workflow_id="string")
const azureOrganizationOnboardingResource = new dome9.AzureOrganizationOnboarding("azureOrganizationOnboardingResource", {
activeBlades: {
awp: {
centralizedSubscriptionId: "string",
isEnabled: false,
onboardingMode: "string",
withFunctionAppsScan: false,
withSseCmkEncryptedDisksScan: false,
},
cdr: {
accounts: [{
logTypes: ["string"],
storageId: "string",
}],
isEnabled: false,
},
postureManagement: {
onboardingMode: "string",
},
serverless: {
isEnabled: false,
},
},
tenantId: "string",
vendor: "string",
appRegistrationName: "string",
azureOrganizationOnboardingId: "string",
clientId: "string",
clientSecret: "string",
isAutoOnboarding: false,
managementGroupId: "string",
organizationName: "string",
useCloudGuardManagedApp: false,
workflowId: "string",
});
type: dome9:AzureOrganizationOnboarding
properties:
activeBlades:
awp:
centralizedSubscriptionId: string
isEnabled: false
onboardingMode: string
withFunctionAppsScan: false
withSseCmkEncryptedDisksScan: false
cdr:
accounts:
- logTypes:
- string
storageId: string
isEnabled: false
postureManagement:
onboardingMode: string
serverless:
isEnabled: false
appRegistrationName: string
azureOrganizationOnboardingId: string
clientId: string
clientSecret: string
isAutoOnboarding: false
managementGroupId: string
organizationName: string
tenantId: string
useCloudGuardManagedApp: false
vendor: string
workflowId: string
AzureOrganizationOnboarding 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 AzureOrganizationOnboarding resource accepts the following input properties:
- Active
Blades AzureOrganization Onboarding Active Blades - Indicates which blades to Activate.
- Tenant
Id string - The Tenant ID to onboard.
- Vendor string
- Vendor name. Can be:
azure
,azurechina
,azuregov
. Default isazure
. - App
Registration stringName - The name of the application created in the script. Required only if non UseCloudGuardManagedApp mode is used.
- Azure
Organization stringOnboarding Id - Client
Id string - Application (client) ID. Required only if non UseCloudGuardManagedApp mode is used.
- Client
Secret string - Azure client secret. Required only if non UseCloudGuardManagedApp mode is used.
- Is
Auto boolOnboarding - Declares if the onboarding pipeline automatically onboards newly discovered subscriptions after the initial onboarding. Default is true and cannot change to false.
- Management
Group stringId - The Management Group ID to onboard. To onboard the whole tenant, use the
tenant_id
parameter here. - Organization
Name string - Organization name in CloudGuard. Default is
AzureOrg
. - Use
Cloud boolGuard Managed App - Specifies whether to use the Check Point application to connect the subscriptions to CloudGuard. Default is false.
- Workflow
Id string - The workflow ID.
- Active
Blades AzureOrganization Onboarding Active Blades Args - Indicates which blades to Activate.
- Tenant
Id string - The Tenant ID to onboard.
- Vendor string
- Vendor name. Can be:
azure
,azurechina
,azuregov
. Default isazure
. - App
Registration stringName - The name of the application created in the script. Required only if non UseCloudGuardManagedApp mode is used.
- Azure
Organization stringOnboarding Id - Client
Id string - Application (client) ID. Required only if non UseCloudGuardManagedApp mode is used.
- Client
Secret string - Azure client secret. Required only if non UseCloudGuardManagedApp mode is used.
- Is
Auto boolOnboarding - Declares if the onboarding pipeline automatically onboards newly discovered subscriptions after the initial onboarding. Default is true and cannot change to false.
- Management
Group stringId - The Management Group ID to onboard. To onboard the whole tenant, use the
tenant_id
parameter here. - Organization
Name string - Organization name in CloudGuard. Default is
AzureOrg
. - Use
Cloud boolGuard Managed App - Specifies whether to use the Check Point application to connect the subscriptions to CloudGuard. Default is false.
- Workflow
Id string - The workflow ID.
- active
Blades AzureOrganization Onboarding Active Blades - Indicates which blades to Activate.
- tenant
Id String - The Tenant ID to onboard.
- vendor String
- Vendor name. Can be:
azure
,azurechina
,azuregov
. Default isazure
. - app
Registration StringName - The name of the application created in the script. Required only if non UseCloudGuardManagedApp mode is used.
- azure
Organization StringOnboarding Id - client
Id String - Application (client) ID. Required only if non UseCloudGuardManagedApp mode is used.
- client
Secret String - Azure client secret. Required only if non UseCloudGuardManagedApp mode is used.
- is
Auto BooleanOnboarding - Declares if the onboarding pipeline automatically onboards newly discovered subscriptions after the initial onboarding. Default is true and cannot change to false.
- management
Group StringId - The Management Group ID to onboard. To onboard the whole tenant, use the
tenant_id
parameter here. - organization
Name String - Organization name in CloudGuard. Default is
AzureOrg
. - use
Cloud BooleanGuard Managed App - Specifies whether to use the Check Point application to connect the subscriptions to CloudGuard. Default is false.
- workflow
Id String - The workflow ID.
- active
Blades AzureOrganization Onboarding Active Blades - Indicates which blades to Activate.
- tenant
Id string - The Tenant ID to onboard.
- vendor string
- Vendor name. Can be:
azure
,azurechina
,azuregov
. Default isazure
. - app
Registration stringName - The name of the application created in the script. Required only if non UseCloudGuardManagedApp mode is used.
- azure
Organization stringOnboarding Id - client
Id string - Application (client) ID. Required only if non UseCloudGuardManagedApp mode is used.
- client
Secret string - Azure client secret. Required only if non UseCloudGuardManagedApp mode is used.
- is
Auto booleanOnboarding - Declares if the onboarding pipeline automatically onboards newly discovered subscriptions after the initial onboarding. Default is true and cannot change to false.
- management
Group stringId - The Management Group ID to onboard. To onboard the whole tenant, use the
tenant_id
parameter here. - organization
Name string - Organization name in CloudGuard. Default is
AzureOrg
. - use
Cloud booleanGuard Managed App - Specifies whether to use the Check Point application to connect the subscriptions to CloudGuard. Default is false.
- workflow
Id string - The workflow ID.
- active_
blades AzureOrganization Onboarding Active Blades Args - Indicates which blades to Activate.
- tenant_
id str - The Tenant ID to onboard.
- vendor str
- Vendor name. Can be:
azure
,azurechina
,azuregov
. Default isazure
. - app_
registration_ strname - The name of the application created in the script. Required only if non UseCloudGuardManagedApp mode is used.
- azure_
organization_ stronboarding_ id - client_
id str - Application (client) ID. Required only if non UseCloudGuardManagedApp mode is used.
- client_
secret str - Azure client secret. Required only if non UseCloudGuardManagedApp mode is used.
- is_
auto_ boolonboarding - Declares if the onboarding pipeline automatically onboards newly discovered subscriptions after the initial onboarding. Default is true and cannot change to false.
- management_
group_ strid - The Management Group ID to onboard. To onboard the whole tenant, use the
tenant_id
parameter here. - organization_
name str - Organization name in CloudGuard. Default is
AzureOrg
. - use_
cloud_ boolguard_ managed_ app - Specifies whether to use the Check Point application to connect the subscriptions to CloudGuard. Default is false.
- workflow_
id str - The workflow ID.
- active
Blades Property Map - Indicates which blades to Activate.
- tenant
Id String - The Tenant ID to onboard.
- vendor String
- Vendor name. Can be:
azure
,azurechina
,azuregov
. Default isazure
. - app
Registration StringName - The name of the application created in the script. Required only if non UseCloudGuardManagedApp mode is used.
- azure
Organization StringOnboarding Id - client
Id String - Application (client) ID. Required only if non UseCloudGuardManagedApp mode is used.
- client
Secret String - Azure client secret. Required only if non UseCloudGuardManagedApp mode is used.
- is
Auto BooleanOnboarding - Declares if the onboarding pipeline automatically onboards newly discovered subscriptions after the initial onboarding. Default is true and cannot change to false.
- management
Group StringId - The Management Group ID to onboard. To onboard the whole tenant, use the
tenant_id
parameter here. - organization
Name String - Organization name in CloudGuard. Default is
AzureOrg
. - use
Cloud BooleanGuard Managed App - Specifies whether to use the Check Point application to connect the subscriptions to CloudGuard. Default is false.
- workflow
Id String - The workflow ID.
Outputs
All input properties are implicitly available as output properties. Additionally, the AzureOrganizationOnboarding resource produces the following output properties:
- Account
Id double - CloudGuard account ID.
- Creation
Time string - Creation time of the organization.
- Id string
- The provider-assigned unique ID for this managed resource.
- Onboarding
Configuration Dictionary<string, string> - Onboarding configuration.
- Update
Time string - last update time of the stackSet.
- User
Id double - CloudGuard user ID.
- Account
Id float64 - CloudGuard account ID.
- Creation
Time string - Creation time of the organization.
- Id string
- The provider-assigned unique ID for this managed resource.
- Onboarding
Configuration map[string]string - Onboarding configuration.
- Update
Time string - last update time of the stackSet.
- User
Id float64 - CloudGuard user ID.
- account
Id Double - CloudGuard account ID.
- creation
Time String - Creation time of the organization.
- id String
- The provider-assigned unique ID for this managed resource.
- onboarding
Configuration Map<String,String> - Onboarding configuration.
- update
Time String - last update time of the stackSet.
- user
Id Double - CloudGuard user ID.
- account
Id number - CloudGuard account ID.
- creation
Time string - Creation time of the organization.
- id string
- The provider-assigned unique ID for this managed resource.
- onboarding
Configuration {[key: string]: string} - Onboarding configuration.
- update
Time string - last update time of the stackSet.
- user
Id number - CloudGuard user ID.
- account_
id float - CloudGuard account ID.
- creation_
time str - Creation time of the organization.
- id str
- The provider-assigned unique ID for this managed resource.
- onboarding_
configuration Mapping[str, str] - Onboarding configuration.
- update_
time str - last update time of the stackSet.
- user_
id float - CloudGuard user ID.
- account
Id Number - CloudGuard account ID.
- creation
Time String - Creation time of the organization.
- id String
- The provider-assigned unique ID for this managed resource.
- onboarding
Configuration Map<String> - Onboarding configuration.
- update
Time String - last update time of the stackSet.
- user
Id Number - CloudGuard user ID.
Look up Existing AzureOrganizationOnboarding Resource
Get an existing AzureOrganizationOnboarding 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?: AzureOrganizationOnboardingState, opts?: CustomResourceOptions): AzureOrganizationOnboarding
@staticmethod
def get(resource_name: str,
id: str,
opts: Optional[ResourceOptions] = None,
account_id: Optional[float] = None,
active_blades: Optional[AzureOrganizationOnboardingActiveBladesArgs] = None,
app_registration_name: Optional[str] = None,
azure_organization_onboarding_id: Optional[str] = None,
client_id: Optional[str] = None,
client_secret: Optional[str] = None,
creation_time: Optional[str] = None,
is_auto_onboarding: Optional[bool] = None,
management_group_id: Optional[str] = None,
onboarding_configuration: Optional[Mapping[str, str]] = None,
organization_name: Optional[str] = None,
tenant_id: Optional[str] = None,
update_time: Optional[str] = None,
use_cloud_guard_managed_app: Optional[bool] = None,
user_id: Optional[float] = None,
vendor: Optional[str] = None,
workflow_id: Optional[str] = None) -> AzureOrganizationOnboarding
func GetAzureOrganizationOnboarding(ctx *Context, name string, id IDInput, state *AzureOrganizationOnboardingState, opts ...ResourceOption) (*AzureOrganizationOnboarding, error)
public static AzureOrganizationOnboarding Get(string name, Input<string> id, AzureOrganizationOnboardingState? state, CustomResourceOptions? opts = null)
public static AzureOrganizationOnboarding get(String name, Output<String> id, AzureOrganizationOnboardingState state, CustomResourceOptions options)
resources: _: type: dome9:AzureOrganizationOnboarding 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 double - CloudGuard account ID.
- Active
Blades AzureOrganization Onboarding Active Blades - Indicates which blades to Activate.
- App
Registration stringName - The name of the application created in the script. Required only if non UseCloudGuardManagedApp mode is used.
- Azure
Organization stringOnboarding Id - Client
Id string - Application (client) ID. Required only if non UseCloudGuardManagedApp mode is used.
- Client
Secret string - Azure client secret. Required only if non UseCloudGuardManagedApp mode is used.
- Creation
Time string - Creation time of the organization.
- Is
Auto boolOnboarding - Declares if the onboarding pipeline automatically onboards newly discovered subscriptions after the initial onboarding. Default is true and cannot change to false.
- Management
Group stringId - The Management Group ID to onboard. To onboard the whole tenant, use the
tenant_id
parameter here. - Onboarding
Configuration Dictionary<string, string> - Onboarding configuration.
- Organization
Name string - Organization name in CloudGuard. Default is
AzureOrg
. - Tenant
Id string - The Tenant ID to onboard.
- Update
Time string - last update time of the stackSet.
- Use
Cloud boolGuard Managed App - Specifies whether to use the Check Point application to connect the subscriptions to CloudGuard. Default is false.
- User
Id double - CloudGuard user ID.
- Vendor string
- Vendor name. Can be:
azure
,azurechina
,azuregov
. Default isazure
. - Workflow
Id string - The workflow ID.
- Account
Id float64 - CloudGuard account ID.
- Active
Blades AzureOrganization Onboarding Active Blades Args - Indicates which blades to Activate.
- App
Registration stringName - The name of the application created in the script. Required only if non UseCloudGuardManagedApp mode is used.
- Azure
Organization stringOnboarding Id - Client
Id string - Application (client) ID. Required only if non UseCloudGuardManagedApp mode is used.
- Client
Secret string - Azure client secret. Required only if non UseCloudGuardManagedApp mode is used.
- Creation
Time string - Creation time of the organization.
- Is
Auto boolOnboarding - Declares if the onboarding pipeline automatically onboards newly discovered subscriptions after the initial onboarding. Default is true and cannot change to false.
- Management
Group stringId - The Management Group ID to onboard. To onboard the whole tenant, use the
tenant_id
parameter here. - Onboarding
Configuration map[string]string - Onboarding configuration.
- Organization
Name string - Organization name in CloudGuard. Default is
AzureOrg
. - Tenant
Id string - The Tenant ID to onboard.
- Update
Time string - last update time of the stackSet.
- Use
Cloud boolGuard Managed App - Specifies whether to use the Check Point application to connect the subscriptions to CloudGuard. Default is false.
- User
Id float64 - CloudGuard user ID.
- Vendor string
- Vendor name. Can be:
azure
,azurechina
,azuregov
. Default isazure
. - Workflow
Id string - The workflow ID.
- account
Id Double - CloudGuard account ID.
- active
Blades AzureOrganization Onboarding Active Blades - Indicates which blades to Activate.
- app
Registration StringName - The name of the application created in the script. Required only if non UseCloudGuardManagedApp mode is used.
- azure
Organization StringOnboarding Id - client
Id String - Application (client) ID. Required only if non UseCloudGuardManagedApp mode is used.
- client
Secret String - Azure client secret. Required only if non UseCloudGuardManagedApp mode is used.
- creation
Time String - Creation time of the organization.
- is
Auto BooleanOnboarding - Declares if the onboarding pipeline automatically onboards newly discovered subscriptions after the initial onboarding. Default is true and cannot change to false.
- management
Group StringId - The Management Group ID to onboard. To onboard the whole tenant, use the
tenant_id
parameter here. - onboarding
Configuration Map<String,String> - Onboarding configuration.
- organization
Name String - Organization name in CloudGuard. Default is
AzureOrg
. - tenant
Id String - The Tenant ID to onboard.
- update
Time String - last update time of the stackSet.
- use
Cloud BooleanGuard Managed App - Specifies whether to use the Check Point application to connect the subscriptions to CloudGuard. Default is false.
- user
Id Double - CloudGuard user ID.
- vendor String
- Vendor name. Can be:
azure
,azurechina
,azuregov
. Default isazure
. - workflow
Id String - The workflow ID.
- account
Id number - CloudGuard account ID.
- active
Blades AzureOrganization Onboarding Active Blades - Indicates which blades to Activate.
- app
Registration stringName - The name of the application created in the script. Required only if non UseCloudGuardManagedApp mode is used.
- azure
Organization stringOnboarding Id - client
Id string - Application (client) ID. Required only if non UseCloudGuardManagedApp mode is used.
- client
Secret string - Azure client secret. Required only if non UseCloudGuardManagedApp mode is used.
- creation
Time string - Creation time of the organization.
- is
Auto booleanOnboarding - Declares if the onboarding pipeline automatically onboards newly discovered subscriptions after the initial onboarding. Default is true and cannot change to false.
- management
Group stringId - The Management Group ID to onboard. To onboard the whole tenant, use the
tenant_id
parameter here. - onboarding
Configuration {[key: string]: string} - Onboarding configuration.
- organization
Name string - Organization name in CloudGuard. Default is
AzureOrg
. - tenant
Id string - The Tenant ID to onboard.
- update
Time string - last update time of the stackSet.
- use
Cloud booleanGuard Managed App - Specifies whether to use the Check Point application to connect the subscriptions to CloudGuard. Default is false.
- user
Id number - CloudGuard user ID.
- vendor string
- Vendor name. Can be:
azure
,azurechina
,azuregov
. Default isazure
. - workflow
Id string - The workflow ID.
- account_
id float - CloudGuard account ID.
- active_
blades AzureOrganization Onboarding Active Blades Args - Indicates which blades to Activate.
- app_
registration_ strname - The name of the application created in the script. Required only if non UseCloudGuardManagedApp mode is used.
- azure_
organization_ stronboarding_ id - client_
id str - Application (client) ID. Required only if non UseCloudGuardManagedApp mode is used.
- client_
secret str - Azure client secret. Required only if non UseCloudGuardManagedApp mode is used.
- creation_
time str - Creation time of the organization.
- is_
auto_ boolonboarding - Declares if the onboarding pipeline automatically onboards newly discovered subscriptions after the initial onboarding. Default is true and cannot change to false.
- management_
group_ strid - The Management Group ID to onboard. To onboard the whole tenant, use the
tenant_id
parameter here. - onboarding_
configuration Mapping[str, str] - Onboarding configuration.
- organization_
name str - Organization name in CloudGuard. Default is
AzureOrg
. - tenant_
id str - The Tenant ID to onboard.
- update_
time str - last update time of the stackSet.
- use_
cloud_ boolguard_ managed_ app - Specifies whether to use the Check Point application to connect the subscriptions to CloudGuard. Default is false.
- user_
id float - CloudGuard user ID.
- vendor str
- Vendor name. Can be:
azure
,azurechina
,azuregov
. Default isazure
. - workflow_
id str - The workflow ID.
- account
Id Number - CloudGuard account ID.
- active
Blades Property Map - Indicates which blades to Activate.
- app
Registration StringName - The name of the application created in the script. Required only if non UseCloudGuardManagedApp mode is used.
- azure
Organization StringOnboarding Id - client
Id String - Application (client) ID. Required only if non UseCloudGuardManagedApp mode is used.
- client
Secret String - Azure client secret. Required only if non UseCloudGuardManagedApp mode is used.
- creation
Time String - Creation time of the organization.
- is
Auto BooleanOnboarding - Declares if the onboarding pipeline automatically onboards newly discovered subscriptions after the initial onboarding. Default is true and cannot change to false.
- management
Group StringId - The Management Group ID to onboard. To onboard the whole tenant, use the
tenant_id
parameter here. - onboarding
Configuration Map<String> - Onboarding configuration.
- organization
Name String - Organization name in CloudGuard. Default is
AzureOrg
. - tenant
Id String - The Tenant ID to onboard.
- update
Time String - last update time of the stackSet.
- use
Cloud BooleanGuard Managed App - Specifies whether to use the Check Point application to connect the subscriptions to CloudGuard. Default is false.
- user
Id Number - CloudGuard user ID.
- vendor String
- Vendor name. Can be:
azure
,azurechina
,azuregov
. Default isazure
. - workflow
Id String - The workflow ID.
Supporting Types
AzureOrganizationOnboardingActiveBlades, AzureOrganizationOnboardingActiveBladesArgs
- Awp
Azure
Organization Onboarding Active Blades Awp - Azure Workload Protection configuration.
- Cdr
Azure
Organization Onboarding Active Blades Cdr - CloudGuard Data Protection configuration.
- Posture
Management AzureOrganization Onboarding Active Blades Posture Management - Posture management configuration.
- Serverless
Azure
Organization Onboarding Active Blades Serverless - Serverless configuration.
- Awp
Azure
Organization Onboarding Active Blades Awp - Azure Workload Protection configuration.
- Cdr
Azure
Organization Onboarding Active Blades Cdr - CloudGuard Data Protection configuration.
- Posture
Management AzureOrganization Onboarding Active Blades Posture Management - Posture management configuration.
- Serverless
Azure
Organization Onboarding Active Blades Serverless - Serverless configuration.
- awp
Azure
Organization Onboarding Active Blades Awp - Azure Workload Protection configuration.
- cdr
Azure
Organization Onboarding Active Blades Cdr - CloudGuard Data Protection configuration.
- posture
Management AzureOrganization Onboarding Active Blades Posture Management - Posture management configuration.
- serverless
Azure
Organization Onboarding Active Blades Serverless - Serverless configuration.
- awp
Azure
Organization Onboarding Active Blades Awp - Azure Workload Protection configuration.
- cdr
Azure
Organization Onboarding Active Blades Cdr - CloudGuard Data Protection configuration.
- posture
Management AzureOrganization Onboarding Active Blades Posture Management - Posture management configuration.
- serverless
Azure
Organization Onboarding Active Blades Serverless - Serverless configuration.
- awp
Azure
Organization Onboarding Active Blades Awp - Azure Workload Protection configuration.
- cdr
Azure
Organization Onboarding Active Blades Cdr - CloudGuard Data Protection configuration.
- posture_
management AzureOrganization Onboarding Active Blades Posture Management - Posture management configuration.
- serverless
Azure
Organization Onboarding Active Blades Serverless - Serverless configuration.
- awp Property Map
- Azure Workload Protection configuration.
- cdr Property Map
- CloudGuard Data Protection configuration.
- posture
Management Property Map - Posture management configuration.
- serverless Property Map
- Serverless configuration.
AzureOrganizationOnboardingActiveBladesAwp, AzureOrganizationOnboardingActiveBladesAwpArgs
- Centralized
Subscription stringId - Centralized subscription ID.
- Is
Enabled bool - Boolean flag to enable Azure Workload Protection.
- Onboarding
Mode string - Onboarding mode. Can be:
saas
,inAccount
,inAccountHub
. - With
Function boolApps Scan - Boolean flag to enable function apps scan.
- With
Sse boolCmk Encrypted Disks Scan - Boolean flag to enable sse cmk apps scan.
- Centralized
Subscription stringId - Centralized subscription ID.
- Is
Enabled bool - Boolean flag to enable Azure Workload Protection.
- Onboarding
Mode string - Onboarding mode. Can be:
saas
,inAccount
,inAccountHub
. - With
Function boolApps Scan - Boolean flag to enable function apps scan.
- With
Sse boolCmk Encrypted Disks Scan - Boolean flag to enable sse cmk apps scan.
- centralized
Subscription StringId - Centralized subscription ID.
- is
Enabled Boolean - Boolean flag to enable Azure Workload Protection.
- onboarding
Mode String - Onboarding mode. Can be:
saas
,inAccount
,inAccountHub
. - with
Function BooleanApps Scan - Boolean flag to enable function apps scan.
- with
Sse BooleanCmk Encrypted Disks Scan - Boolean flag to enable sse cmk apps scan.
- centralized
Subscription stringId - Centralized subscription ID.
- is
Enabled boolean - Boolean flag to enable Azure Workload Protection.
- onboarding
Mode string - Onboarding mode. Can be:
saas
,inAccount
,inAccountHub
. - with
Function booleanApps Scan - Boolean flag to enable function apps scan.
- with
Sse booleanCmk Encrypted Disks Scan - Boolean flag to enable sse cmk apps scan.
- centralized_
subscription_ strid - Centralized subscription ID.
- is_
enabled bool - Boolean flag to enable Azure Workload Protection.
- onboarding_
mode str - Onboarding mode. Can be:
saas
,inAccount
,inAccountHub
. - with_
function_ boolapps_ scan - Boolean flag to enable function apps scan.
- with_
sse_ boolcmk_ encrypted_ disks_ scan - Boolean flag to enable sse cmk apps scan.
- centralized
Subscription StringId - Centralized subscription ID.
- is
Enabled Boolean - Boolean flag to enable Azure Workload Protection.
- onboarding
Mode String - Onboarding mode. Can be:
saas
,inAccount
,inAccountHub
. - with
Function BooleanApps Scan - Boolean flag to enable function apps scan.
- with
Sse BooleanCmk Encrypted Disks Scan - Boolean flag to enable sse cmk apps scan.
AzureOrganizationOnboardingActiveBladesCdr, AzureOrganizationOnboardingActiveBladesCdrArgs
- Accounts
List<Azure
Organization Onboarding Active Blades Cdr Account> - List of storage accounts.
- Is
Enabled bool - Boolean flag to enable CloudGuard Data Protection.
- Accounts
[]Azure
Organization Onboarding Active Blades Cdr Account - List of storage accounts.
- Is
Enabled bool - Boolean flag to enable CloudGuard Data Protection.
- accounts
List<Azure
Organization Onboarding Active Blades Cdr Account> - List of storage accounts.
- is
Enabled Boolean - Boolean flag to enable CloudGuard Data Protection.
- accounts
Azure
Organization Onboarding Active Blades Cdr Account[] - List of storage accounts.
- is
Enabled boolean - Boolean flag to enable CloudGuard Data Protection.
- accounts
Sequence[Azure
Organization Onboarding Active Blades Cdr Account] - List of storage accounts.
- is_
enabled bool - Boolean flag to enable CloudGuard Data Protection.
- accounts List<Property Map>
- List of storage accounts.
- is
Enabled Boolean - Boolean flag to enable CloudGuard Data Protection.
AzureOrganizationOnboardingActiveBladesCdrAccount, AzureOrganizationOnboardingActiveBladesCdrAccountArgs
- log_
types Sequence[str] - List of log types.
- storage_
id str - Storage account ID.
AzureOrganizationOnboardingActiveBladesPostureManagement, AzureOrganizationOnboardingActiveBladesPostureManagementArgs
- Onboarding
Mode string - Onboarding mode. Can be:
Read
,Manage
.
- Onboarding
Mode string - Onboarding mode. Can be:
Read
,Manage
.
- onboarding
Mode String - Onboarding mode. Can be:
Read
,Manage
.
- onboarding
Mode string - Onboarding mode. Can be:
Read
,Manage
.
- onboarding_
mode str - Onboarding mode. Can be:
Read
,Manage
.
- onboarding
Mode String - Onboarding mode. Can be:
Read
,Manage
.
AzureOrganizationOnboardingActiveBladesServerless, AzureOrganizationOnboardingActiveBladesServerlessArgs
- Is
Enabled bool - Boolean flag to enable serverless protection. - Not supported yet.
- Is
Enabled bool - Boolean flag to enable serverless protection. - Not supported yet.
- is
Enabled Boolean - Boolean flag to enable serverless protection. - Not supported yet.
- is
Enabled boolean - Boolean flag to enable serverless protection. - Not supported yet.
- is_
enabled bool - Boolean flag to enable serverless protection. - Not supported yet.
- is
Enabled Boolean - Boolean flag to enable serverless protection. - Not supported yet.
Package Details
- Repository
- dome9 dome9/terraform-provider-dome9
- License
- Notes
- This Pulumi package is based on the
dome9
Terraform Provider.