dome9.AwpAzureOnboarding
Explore with Pulumi AI
This resource is used to create and modify AWP Azure Onboarding in CloudGuard Dome9.
Create AwpAzureOnboarding Resource
Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.
Constructor syntax
new AwpAzureOnboarding(name: string, args: AwpAzureOnboardingArgs, opts?: CustomResourceOptions);
@overload
def AwpAzureOnboarding(resource_name: str,
args: AwpAzureOnboardingArgs,
opts: Optional[ResourceOptions] = None)
@overload
def AwpAzureOnboarding(resource_name: str,
opts: Optional[ResourceOptions] = None,
cloudguard_account_id: Optional[str] = None,
scan_mode: Optional[str] = None,
agentless_account_settings: Optional[AwpAzureOnboardingAgentlessAccountSettingsArgs] = None,
awp_azure_onboarding_id: Optional[str] = None,
centralized_cloud_account_id: Optional[str] = None,
management_group_id: Optional[str] = None,
should_create_policy: Optional[bool] = None)
func NewAwpAzureOnboarding(ctx *Context, name string, args AwpAzureOnboardingArgs, opts ...ResourceOption) (*AwpAzureOnboarding, error)
public AwpAzureOnboarding(string name, AwpAzureOnboardingArgs args, CustomResourceOptions? opts = null)
public AwpAzureOnboarding(String name, AwpAzureOnboardingArgs args)
public AwpAzureOnboarding(String name, AwpAzureOnboardingArgs args, CustomResourceOptions options)
type: dome9:AwpAzureOnboarding
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 AwpAzureOnboardingArgs
- 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 AwpAzureOnboardingArgs
- 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 AwpAzureOnboardingArgs
- The arguments to resource properties.
- opts ResourceOption
- Bag of options to control resource's behavior.
- name string
- The unique name of the resource.
- args AwpAzureOnboardingArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- name String
- The unique name of the resource.
- args AwpAzureOnboardingArgs
- 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 awpAzureOnboardingResource = new Dome9.AwpAzureOnboarding("awpAzureOnboardingResource", new()
{
CloudguardAccountId = "string",
ScanMode = "string",
AgentlessAccountSettings = new Dome9.Inputs.AwpAzureOnboardingAgentlessAccountSettingsArgs
{
CustomTags =
{
{ "string", "string" },
},
DisabledRegions = new[]
{
"string",
},
InAccountScannerVpc = "string",
MaxConcurrentScansPerRegion = 0,
ScanMachineIntervalInHours = 0,
SkipFunctionAppsScan = false,
SseCmkEncryptedDisksScan = false,
},
AwpAzureOnboardingId = "string",
CentralizedCloudAccountId = "string",
ManagementGroupId = "string",
ShouldCreatePolicy = false,
});
example, err := dome9.NewAwpAzureOnboarding(ctx, "awpAzureOnboardingResource", &dome9.AwpAzureOnboardingArgs{
CloudguardAccountId: pulumi.String("string"),
ScanMode: pulumi.String("string"),
AgentlessAccountSettings: &dome9.AwpAzureOnboardingAgentlessAccountSettingsArgs{
CustomTags: pulumi.StringMap{
"string": pulumi.String("string"),
},
DisabledRegions: pulumi.StringArray{
pulumi.String("string"),
},
InAccountScannerVpc: pulumi.String("string"),
MaxConcurrentScansPerRegion: pulumi.Float64(0),
ScanMachineIntervalInHours: pulumi.Float64(0),
SkipFunctionAppsScan: pulumi.Bool(false),
SseCmkEncryptedDisksScan: pulumi.Bool(false),
},
AwpAzureOnboardingId: pulumi.String("string"),
CentralizedCloudAccountId: pulumi.String("string"),
ManagementGroupId: pulumi.String("string"),
ShouldCreatePolicy: pulumi.Bool(false),
})
var awpAzureOnboardingResource = new AwpAzureOnboarding("awpAzureOnboardingResource", AwpAzureOnboardingArgs.builder()
.cloudguardAccountId("string")
.scanMode("string")
.agentlessAccountSettings(AwpAzureOnboardingAgentlessAccountSettingsArgs.builder()
.customTags(Map.of("string", "string"))
.disabledRegions("string")
.inAccountScannerVpc("string")
.maxConcurrentScansPerRegion(0)
.scanMachineIntervalInHours(0)
.skipFunctionAppsScan(false)
.sseCmkEncryptedDisksScan(false)
.build())
.awpAzureOnboardingId("string")
.centralizedCloudAccountId("string")
.managementGroupId("string")
.shouldCreatePolicy(false)
.build());
awp_azure_onboarding_resource = dome9.AwpAzureOnboarding("awpAzureOnboardingResource",
cloudguard_account_id="string",
scan_mode="string",
agentless_account_settings={
"custom_tags": {
"string": "string",
},
"disabled_regions": ["string"],
"in_account_scanner_vpc": "string",
"max_concurrent_scans_per_region": 0,
"scan_machine_interval_in_hours": 0,
"skip_function_apps_scan": False,
"sse_cmk_encrypted_disks_scan": False,
},
awp_azure_onboarding_id="string",
centralized_cloud_account_id="string",
management_group_id="string",
should_create_policy=False)
const awpAzureOnboardingResource = new dome9.AwpAzureOnboarding("awpAzureOnboardingResource", {
cloudguardAccountId: "string",
scanMode: "string",
agentlessAccountSettings: {
customTags: {
string: "string",
},
disabledRegions: ["string"],
inAccountScannerVpc: "string",
maxConcurrentScansPerRegion: 0,
scanMachineIntervalInHours: 0,
skipFunctionAppsScan: false,
sseCmkEncryptedDisksScan: false,
},
awpAzureOnboardingId: "string",
centralizedCloudAccountId: "string",
managementGroupId: "string",
shouldCreatePolicy: false,
});
type: dome9:AwpAzureOnboarding
properties:
agentlessAccountSettings:
customTags:
string: string
disabledRegions:
- string
inAccountScannerVpc: string
maxConcurrentScansPerRegion: 0
scanMachineIntervalInHours: 0
skipFunctionAppsScan: false
sseCmkEncryptedDisksScan: false
awpAzureOnboardingId: string
centralizedCloudAccountId: string
cloudguardAccountId: string
managementGroupId: string
scanMode: string
shouldCreatePolicy: false
AwpAzureOnboarding 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 AwpAzureOnboarding resource accepts the following input properties:
- Cloudguard
Account stringId - The CloudGuard account id.
- Scan
Mode string - The scan mode. Valid values are "inAccount", "saas", "inAccountHub", "inAccountSub".
- Agentless
Account AwpSettings Azure Onboarding Agentless Account Settings - The agentless account settings.
- Awp
Azure stringOnboarding Id - Centralized
Cloud stringAccount Id - Management
Group stringId - the management group id, relevant only for inAccountHub mode.
- Should
Create boolPolicy - Whether to create a policy. Default is true.
- Cloudguard
Account stringId - The CloudGuard account id.
- Scan
Mode string - The scan mode. Valid values are "inAccount", "saas", "inAccountHub", "inAccountSub".
- Agentless
Account AwpSettings Azure Onboarding Agentless Account Settings Args - The agentless account settings.
- Awp
Azure stringOnboarding Id - Centralized
Cloud stringAccount Id - Management
Group stringId - the management group id, relevant only for inAccountHub mode.
- Should
Create boolPolicy - Whether to create a policy. Default is true.
- cloudguard
Account StringId - The CloudGuard account id.
- scan
Mode String - The scan mode. Valid values are "inAccount", "saas", "inAccountHub", "inAccountSub".
- agentless
Account AwpSettings Azure Onboarding Agentless Account Settings - The agentless account settings.
- awp
Azure StringOnboarding Id - centralized
Cloud StringAccount Id - management
Group StringId - the management group id, relevant only for inAccountHub mode.
- should
Create BooleanPolicy - Whether to create a policy. Default is true.
- cloudguard
Account stringId - The CloudGuard account id.
- scan
Mode string - The scan mode. Valid values are "inAccount", "saas", "inAccountHub", "inAccountSub".
- agentless
Account AwpSettings Azure Onboarding Agentless Account Settings - The agentless account settings.
- awp
Azure stringOnboarding Id - centralized
Cloud stringAccount Id - management
Group stringId - the management group id, relevant only for inAccountHub mode.
- should
Create booleanPolicy - Whether to create a policy. Default is true.
- cloudguard_
account_ strid - The CloudGuard account id.
- scan_
mode str - The scan mode. Valid values are "inAccount", "saas", "inAccountHub", "inAccountSub".
- agentless_
account_ Awpsettings Azure Onboarding Agentless Account Settings Args - The agentless account settings.
- awp_
azure_ stronboarding_ id - centralized_
cloud_ straccount_ id - management_
group_ strid - the management group id, relevant only for inAccountHub mode.
- should_
create_ boolpolicy - Whether to create a policy. Default is true.
- cloudguard
Account StringId - The CloudGuard account id.
- scan
Mode String - The scan mode. Valid values are "inAccount", "saas", "inAccountHub", "inAccountSub".
- agentless
Account Property MapSettings - The agentless account settings.
- awp
Azure StringOnboarding Id - centralized
Cloud StringAccount Id - management
Group StringId - the management group id, relevant only for inAccountHub mode.
- should
Create BooleanPolicy - Whether to create a policy. Default is true.
Outputs
All input properties are implicitly available as output properties. Additionally, the AwpAzureOnboarding resource produces the following output properties:
- Agentless
Protection boolEnabled - Whether agentless protection is enabled.
- Cloud
Account stringId - The cloud guard account id.
- Cloud
Provider string - The cloud provider.
- Id string
- The provider-assigned unique ID for this managed resource.
- Is
Org boolOnboarding - Whether is org onboarding.
- Missing
Awp List<string>Private Network Regions - The missing AWP private network regions.
- Should
Update bool - Whether to update.
- Agentless
Protection boolEnabled - Whether agentless protection is enabled.
- Cloud
Account stringId - The cloud guard account id.
- Cloud
Provider string - The cloud provider.
- Id string
- The provider-assigned unique ID for this managed resource.
- Is
Org boolOnboarding - Whether is org onboarding.
- Missing
Awp []stringPrivate Network Regions - The missing AWP private network regions.
- Should
Update bool - Whether to update.
- agentless
Protection BooleanEnabled - Whether agentless protection is enabled.
- cloud
Account StringId - The cloud guard account id.
- cloud
Provider String - The cloud provider.
- id String
- The provider-assigned unique ID for this managed resource.
- is
Org BooleanOnboarding - Whether is org onboarding.
- missing
Awp List<String>Private Network Regions - The missing AWP private network regions.
- should
Update Boolean - Whether to update.
- agentless
Protection booleanEnabled - Whether agentless protection is enabled.
- cloud
Account stringId - The cloud guard account id.
- cloud
Provider string - The cloud provider.
- id string
- The provider-assigned unique ID for this managed resource.
- is
Org booleanOnboarding - Whether is org onboarding.
- missing
Awp string[]Private Network Regions - The missing AWP private network regions.
- should
Update boolean - Whether to update.
- agentless_
protection_ boolenabled - Whether agentless protection is enabled.
- cloud_
account_ strid - The cloud guard account id.
- cloud_
provider str - The cloud provider.
- id str
- The provider-assigned unique ID for this managed resource.
- is_
org_ boolonboarding - Whether is org onboarding.
- missing_
awp_ Sequence[str]private_ network_ regions - The missing AWP private network regions.
- should_
update bool - Whether to update.
- agentless
Protection BooleanEnabled - Whether agentless protection is enabled.
- cloud
Account StringId - The cloud guard account id.
- cloud
Provider String - The cloud provider.
- id String
- The provider-assigned unique ID for this managed resource.
- is
Org BooleanOnboarding - Whether is org onboarding.
- missing
Awp List<String>Private Network Regions - The missing AWP private network regions.
- should
Update Boolean - Whether to update.
Look up Existing AwpAzureOnboarding Resource
Get an existing AwpAzureOnboarding 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?: AwpAzureOnboardingState, opts?: CustomResourceOptions): AwpAzureOnboarding
@staticmethod
def get(resource_name: str,
id: str,
opts: Optional[ResourceOptions] = None,
agentless_account_settings: Optional[AwpAzureOnboardingAgentlessAccountSettingsArgs] = None,
agentless_protection_enabled: Optional[bool] = None,
awp_azure_onboarding_id: Optional[str] = None,
centralized_cloud_account_id: Optional[str] = None,
cloud_account_id: Optional[str] = None,
cloud_provider: Optional[str] = None,
cloudguard_account_id: Optional[str] = None,
is_org_onboarding: Optional[bool] = None,
management_group_id: Optional[str] = None,
missing_awp_private_network_regions: Optional[Sequence[str]] = None,
scan_mode: Optional[str] = None,
should_create_policy: Optional[bool] = None,
should_update: Optional[bool] = None) -> AwpAzureOnboarding
func GetAwpAzureOnboarding(ctx *Context, name string, id IDInput, state *AwpAzureOnboardingState, opts ...ResourceOption) (*AwpAzureOnboarding, error)
public static AwpAzureOnboarding Get(string name, Input<string> id, AwpAzureOnboardingState? state, CustomResourceOptions? opts = null)
public static AwpAzureOnboarding get(String name, Output<String> id, AwpAzureOnboardingState state, CustomResourceOptions options)
resources: _: type: dome9:AwpAzureOnboarding 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.
- Agentless
Account AwpSettings Azure Onboarding Agentless Account Settings - The agentless account settings.
- Agentless
Protection boolEnabled - Whether agentless protection is enabled.
- Awp
Azure stringOnboarding Id - Centralized
Cloud stringAccount Id - Cloud
Account stringId - The cloud guard account id.
- Cloud
Provider string - The cloud provider.
- Cloudguard
Account stringId - The CloudGuard account id.
- Is
Org boolOnboarding - Whether is org onboarding.
- Management
Group stringId - the management group id, relevant only for inAccountHub mode.
- Missing
Awp List<string>Private Network Regions - The missing AWP private network regions.
- Scan
Mode string - The scan mode. Valid values are "inAccount", "saas", "inAccountHub", "inAccountSub".
- Should
Create boolPolicy - Whether to create a policy. Default is true.
- Should
Update bool - Whether to update.
- Agentless
Account AwpSettings Azure Onboarding Agentless Account Settings Args - The agentless account settings.
- Agentless
Protection boolEnabled - Whether agentless protection is enabled.
- Awp
Azure stringOnboarding Id - Centralized
Cloud stringAccount Id - Cloud
Account stringId - The cloud guard account id.
- Cloud
Provider string - The cloud provider.
- Cloudguard
Account stringId - The CloudGuard account id.
- Is
Org boolOnboarding - Whether is org onboarding.
- Management
Group stringId - the management group id, relevant only for inAccountHub mode.
- Missing
Awp []stringPrivate Network Regions - The missing AWP private network regions.
- Scan
Mode string - The scan mode. Valid values are "inAccount", "saas", "inAccountHub", "inAccountSub".
- Should
Create boolPolicy - Whether to create a policy. Default is true.
- Should
Update bool - Whether to update.
- agentless
Account AwpSettings Azure Onboarding Agentless Account Settings - The agentless account settings.
- agentless
Protection BooleanEnabled - Whether agentless protection is enabled.
- awp
Azure StringOnboarding Id - centralized
Cloud StringAccount Id - cloud
Account StringId - The cloud guard account id.
- cloud
Provider String - The cloud provider.
- cloudguard
Account StringId - The CloudGuard account id.
- is
Org BooleanOnboarding - Whether is org onboarding.
- management
Group StringId - the management group id, relevant only for inAccountHub mode.
- missing
Awp List<String>Private Network Regions - The missing AWP private network regions.
- scan
Mode String - The scan mode. Valid values are "inAccount", "saas", "inAccountHub", "inAccountSub".
- should
Create BooleanPolicy - Whether to create a policy. Default is true.
- should
Update Boolean - Whether to update.
- agentless
Account AwpSettings Azure Onboarding Agentless Account Settings - The agentless account settings.
- agentless
Protection booleanEnabled - Whether agentless protection is enabled.
- awp
Azure stringOnboarding Id - centralized
Cloud stringAccount Id - cloud
Account stringId - The cloud guard account id.
- cloud
Provider string - The cloud provider.
- cloudguard
Account stringId - The CloudGuard account id.
- is
Org booleanOnboarding - Whether is org onboarding.
- management
Group stringId - the management group id, relevant only for inAccountHub mode.
- missing
Awp string[]Private Network Regions - The missing AWP private network regions.
- scan
Mode string - The scan mode. Valid values are "inAccount", "saas", "inAccountHub", "inAccountSub".
- should
Create booleanPolicy - Whether to create a policy. Default is true.
- should
Update boolean - Whether to update.
- agentless_
account_ Awpsettings Azure Onboarding Agentless Account Settings Args - The agentless account settings.
- agentless_
protection_ boolenabled - Whether agentless protection is enabled.
- awp_
azure_ stronboarding_ id - centralized_
cloud_ straccount_ id - cloud_
account_ strid - The cloud guard account id.
- cloud_
provider str - The cloud provider.
- cloudguard_
account_ strid - The CloudGuard account id.
- is_
org_ boolonboarding - Whether is org onboarding.
- management_
group_ strid - the management group id, relevant only for inAccountHub mode.
- missing_
awp_ Sequence[str]private_ network_ regions - The missing AWP private network regions.
- scan_
mode str - The scan mode. Valid values are "inAccount", "saas", "inAccountHub", "inAccountSub".
- should_
create_ boolpolicy - Whether to create a policy. Default is true.
- should_
update bool - Whether to update.
- agentless
Account Property MapSettings - The agentless account settings.
- agentless
Protection BooleanEnabled - Whether agentless protection is enabled.
- awp
Azure StringOnboarding Id - centralized
Cloud StringAccount Id - cloud
Account StringId - The cloud guard account id.
- cloud
Provider String - The cloud provider.
- cloudguard
Account StringId - The CloudGuard account id.
- is
Org BooleanOnboarding - Whether is org onboarding.
- management
Group StringId - the management group id, relevant only for inAccountHub mode.
- missing
Awp List<String>Private Network Regions - The missing AWP private network regions.
- scan
Mode String - The scan mode. Valid values are "inAccount", "saas", "inAccountHub", "inAccountSub".
- should
Create BooleanPolicy - Whether to create a policy. Default is true.
- should
Update Boolean - Whether to update.
Supporting Types
AwpAzureOnboardingAgentlessAccountSettings, AwpAzureOnboardingAgentlessAccountSettingsArgs
- Dictionary<string, string>
- The custom tags.
- Disabled
Regions List<string> - The disabled regions. valid values are "centralus", "eastus", "eastus2", "usgovlowa", "usgovvirginia", "northcentralus", "southcentralus", "westus", "westus2", "westcentralus", "northeurope", "westeurope", "eastasia", "southeastasia", "japaneast", "japanwest", "brazilsouth", "australiaeast", "australiasoutheast", "centralindia", "southindia", "westindia", "chinaeast", "chinanorth", "canadacentral", "canadaeast", "germanycentral", "germanynortheast", "koreacentral", "uksouth", "ukwest", "koreasouth"
- In
Account stringScanner Vpc - = (optional) # The VPC Mode. Valid values: "ManagedByAWP", "ManagedByCustomer" (supported for inAccount and inAccountHub scan modes)
- Max
Concurrent doubleScans Per Region - The max concurrent scans per region
- Scan
Machine doubleInterval In Hours - The scan machine interval in hours
- Skip
Function boolApps Scan - Skip Azure Function Apps scan (supported for inAccount and inAccountSub scan modes)
- Sse
Cmk boolEncrypted Disks Scan - = (optional) # Enable SSE CMK scanning, relevant only for inAccountHub mode.
- map[string]string
- The custom tags.
- Disabled
Regions []string - The disabled regions. valid values are "centralus", "eastus", "eastus2", "usgovlowa", "usgovvirginia", "northcentralus", "southcentralus", "westus", "westus2", "westcentralus", "northeurope", "westeurope", "eastasia", "southeastasia", "japaneast", "japanwest", "brazilsouth", "australiaeast", "australiasoutheast", "centralindia", "southindia", "westindia", "chinaeast", "chinanorth", "canadacentral", "canadaeast", "germanycentral", "germanynortheast", "koreacentral", "uksouth", "ukwest", "koreasouth"
- In
Account stringScanner Vpc - = (optional) # The VPC Mode. Valid values: "ManagedByAWP", "ManagedByCustomer" (supported for inAccount and inAccountHub scan modes)
- Max
Concurrent float64Scans Per Region - The max concurrent scans per region
- Scan
Machine float64Interval In Hours - The scan machine interval in hours
- Skip
Function boolApps Scan - Skip Azure Function Apps scan (supported for inAccount and inAccountSub scan modes)
- Sse
Cmk boolEncrypted Disks Scan - = (optional) # Enable SSE CMK scanning, relevant only for inAccountHub mode.
- Map<String,String>
- The custom tags.
- disabled
Regions List<String> - The disabled regions. valid values are "centralus", "eastus", "eastus2", "usgovlowa", "usgovvirginia", "northcentralus", "southcentralus", "westus", "westus2", "westcentralus", "northeurope", "westeurope", "eastasia", "southeastasia", "japaneast", "japanwest", "brazilsouth", "australiaeast", "australiasoutheast", "centralindia", "southindia", "westindia", "chinaeast", "chinanorth", "canadacentral", "canadaeast", "germanycentral", "germanynortheast", "koreacentral", "uksouth", "ukwest", "koreasouth"
- in
Account StringScanner Vpc - = (optional) # The VPC Mode. Valid values: "ManagedByAWP", "ManagedByCustomer" (supported for inAccount and inAccountHub scan modes)
- max
Concurrent DoubleScans Per Region - The max concurrent scans per region
- scan
Machine DoubleInterval In Hours - The scan machine interval in hours
- skip
Function BooleanApps Scan - Skip Azure Function Apps scan (supported for inAccount and inAccountSub scan modes)
- sse
Cmk BooleanEncrypted Disks Scan - = (optional) # Enable SSE CMK scanning, relevant only for inAccountHub mode.
- {[key: string]: string}
- The custom tags.
- disabled
Regions string[] - The disabled regions. valid values are "centralus", "eastus", "eastus2", "usgovlowa", "usgovvirginia", "northcentralus", "southcentralus", "westus", "westus2", "westcentralus", "northeurope", "westeurope", "eastasia", "southeastasia", "japaneast", "japanwest", "brazilsouth", "australiaeast", "australiasoutheast", "centralindia", "southindia", "westindia", "chinaeast", "chinanorth", "canadacentral", "canadaeast", "germanycentral", "germanynortheast", "koreacentral", "uksouth", "ukwest", "koreasouth"
- in
Account stringScanner Vpc - = (optional) # The VPC Mode. Valid values: "ManagedByAWP", "ManagedByCustomer" (supported for inAccount and inAccountHub scan modes)
- max
Concurrent numberScans Per Region - The max concurrent scans per region
- scan
Machine numberInterval In Hours - The scan machine interval in hours
- skip
Function booleanApps Scan - Skip Azure Function Apps scan (supported for inAccount and inAccountSub scan modes)
- sse
Cmk booleanEncrypted Disks Scan - = (optional) # Enable SSE CMK scanning, relevant only for inAccountHub mode.
- Mapping[str, str]
- The custom tags.
- disabled_
regions Sequence[str] - The disabled regions. valid values are "centralus", "eastus", "eastus2", "usgovlowa", "usgovvirginia", "northcentralus", "southcentralus", "westus", "westus2", "westcentralus", "northeurope", "westeurope", "eastasia", "southeastasia", "japaneast", "japanwest", "brazilsouth", "australiaeast", "australiasoutheast", "centralindia", "southindia", "westindia", "chinaeast", "chinanorth", "canadacentral", "canadaeast", "germanycentral", "germanynortheast", "koreacentral", "uksouth", "ukwest", "koreasouth"
- in_
account_ strscanner_ vpc - = (optional) # The VPC Mode. Valid values: "ManagedByAWP", "ManagedByCustomer" (supported for inAccount and inAccountHub scan modes)
- max_
concurrent_ floatscans_ per_ region - The max concurrent scans per region
- scan_
machine_ floatinterval_ in_ hours - The scan machine interval in hours
- skip_
function_ boolapps_ scan - Skip Azure Function Apps scan (supported for inAccount and inAccountSub scan modes)
- sse_
cmk_ boolencrypted_ disks_ scan - = (optional) # Enable SSE CMK scanning, relevant only for inAccountHub mode.
- Map<String>
- The custom tags.
- disabled
Regions List<String> - The disabled regions. valid values are "centralus", "eastus", "eastus2", "usgovlowa", "usgovvirginia", "northcentralus", "southcentralus", "westus", "westus2", "westcentralus", "northeurope", "westeurope", "eastasia", "southeastasia", "japaneast", "japanwest", "brazilsouth", "australiaeast", "australiasoutheast", "centralindia", "southindia", "westindia", "chinaeast", "chinanorth", "canadacentral", "canadaeast", "germanycentral", "germanynortheast", "koreacentral", "uksouth", "ukwest", "koreasouth"
- in
Account StringScanner Vpc - = (optional) # The VPC Mode. Valid values: "ManagedByAWP", "ManagedByCustomer" (supported for inAccount and inAccountHub scan modes)
- max
Concurrent NumberScans Per Region - The max concurrent scans per region
- scan
Machine NumberInterval In Hours - The scan machine interval in hours
- skip
Function BooleanApps Scan - Skip Azure Function Apps scan (supported for inAccount and inAccountSub scan modes)
- sse
Cmk BooleanEncrypted Disks Scan - = (optional) # Enable SSE CMK scanning, relevant only for inAccountHub mode.
Import
The AWP Azure Onboarding can be imported; use
For example:
$ pulumi import dome9:index/awpAzureOnboarding:AwpAzureOnboarding test_awp_azure_onboarding 00000000-0000-0000-0000-000000000000
To learn more about importing existing cloud resources, see Importing resources.
Package Details
- Repository
- dome9 dome9/terraform-provider-dome9
- License
- Notes
- This Pulumi package is based on the
dome9
Terraform Provider.