dome9.AwpAwsOnboarding
Explore with Pulumi AI
This resource is used to create and modify AWP AWS Onboarding in CloudGuard Dome9.
Create AwpAwsOnboarding Resource
Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.
Constructor syntax
new AwpAwsOnboarding(name: string, args: AwpAwsOnboardingArgs, opts?: CustomResourceOptions);
@overload
def AwpAwsOnboarding(resource_name: str,
args: AwpAwsOnboardingArgs,
opts: Optional[ResourceOptions] = None)
@overload
def AwpAwsOnboarding(resource_name: str,
opts: Optional[ResourceOptions] = None,
cloudguard_account_id: Optional[str] = None,
cross_account_role_external_id: Optional[str] = None,
cross_account_role_name: Optional[str] = None,
scan_mode: Optional[str] = None,
agentless_account_settings: Optional[AwpAwsOnboardingAgentlessAccountSettingsArgs] = None,
awp_aws_onboarding_id: Optional[str] = None,
awp_centralized_cloud_account_id: Optional[str] = None,
awp_version: Optional[str] = None,
force_delete: Optional[bool] = None,
should_create_policy: Optional[bool] = None)
func NewAwpAwsOnboarding(ctx *Context, name string, args AwpAwsOnboardingArgs, opts ...ResourceOption) (*AwpAwsOnboarding, error)
public AwpAwsOnboarding(string name, AwpAwsOnboardingArgs args, CustomResourceOptions? opts = null)
public AwpAwsOnboarding(String name, AwpAwsOnboardingArgs args)
public AwpAwsOnboarding(String name, AwpAwsOnboardingArgs args, CustomResourceOptions options)
type: dome9:AwpAwsOnboarding
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 AwpAwsOnboardingArgs
- 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 AwpAwsOnboardingArgs
- 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 AwpAwsOnboardingArgs
- The arguments to resource properties.
- opts ResourceOption
- Bag of options to control resource's behavior.
- name string
- The unique name of the resource.
- args AwpAwsOnboardingArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- name String
- The unique name of the resource.
- args AwpAwsOnboardingArgs
- 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 awpAwsOnboardingResource = new Dome9.AwpAwsOnboarding("awpAwsOnboardingResource", new()
{
CloudguardAccountId = "string",
CrossAccountRoleExternalId = "string",
CrossAccountRoleName = "string",
ScanMode = "string",
AgentlessAccountSettings = new Dome9.Inputs.AwpAwsOnboardingAgentlessAccountSettingsArgs
{
CustomTags =
{
{ "string", "string" },
},
DisabledRegions = new[]
{
"string",
},
InAccountScannerVpc = "string",
MaxConcurrentScansPerRegion = 0,
ScanAwsLicensedImages = false,
ScanMachineIntervalInHours = 0,
},
AwpAwsOnboardingId = "string",
AwpCentralizedCloudAccountId = "string",
AwpVersion = "string",
ForceDelete = false,
ShouldCreatePolicy = false,
});
example, err := dome9.NewAwpAwsOnboarding(ctx, "awpAwsOnboardingResource", &dome9.AwpAwsOnboardingArgs{
CloudguardAccountId: pulumi.String("string"),
CrossAccountRoleExternalId: pulumi.String("string"),
CrossAccountRoleName: pulumi.String("string"),
ScanMode: pulumi.String("string"),
AgentlessAccountSettings: &dome9.AwpAwsOnboardingAgentlessAccountSettingsArgs{
CustomTags: pulumi.StringMap{
"string": pulumi.String("string"),
},
DisabledRegions: pulumi.StringArray{
pulumi.String("string"),
},
InAccountScannerVpc: pulumi.String("string"),
MaxConcurrentScansPerRegion: pulumi.Float64(0),
ScanAwsLicensedImages: pulumi.Bool(false),
ScanMachineIntervalInHours: pulumi.Float64(0),
},
AwpAwsOnboardingId: pulumi.String("string"),
AwpCentralizedCloudAccountId: pulumi.String("string"),
AwpVersion: pulumi.String("string"),
ForceDelete: pulumi.Bool(false),
ShouldCreatePolicy: pulumi.Bool(false),
})
var awpAwsOnboardingResource = new AwpAwsOnboarding("awpAwsOnboardingResource", AwpAwsOnboardingArgs.builder()
.cloudguardAccountId("string")
.crossAccountRoleExternalId("string")
.crossAccountRoleName("string")
.scanMode("string")
.agentlessAccountSettings(AwpAwsOnboardingAgentlessAccountSettingsArgs.builder()
.customTags(Map.of("string", "string"))
.disabledRegions("string")
.inAccountScannerVpc("string")
.maxConcurrentScansPerRegion(0)
.scanAwsLicensedImages(false)
.scanMachineIntervalInHours(0)
.build())
.awpAwsOnboardingId("string")
.awpCentralizedCloudAccountId("string")
.awpVersion("string")
.forceDelete(false)
.shouldCreatePolicy(false)
.build());
awp_aws_onboarding_resource = dome9.AwpAwsOnboarding("awpAwsOnboardingResource",
cloudguard_account_id="string",
cross_account_role_external_id="string",
cross_account_role_name="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_aws_licensed_images": False,
"scan_machine_interval_in_hours": 0,
},
awp_aws_onboarding_id="string",
awp_centralized_cloud_account_id="string",
awp_version="string",
force_delete=False,
should_create_policy=False)
const awpAwsOnboardingResource = new dome9.AwpAwsOnboarding("awpAwsOnboardingResource", {
cloudguardAccountId: "string",
crossAccountRoleExternalId: "string",
crossAccountRoleName: "string",
scanMode: "string",
agentlessAccountSettings: {
customTags: {
string: "string",
},
disabledRegions: ["string"],
inAccountScannerVpc: "string",
maxConcurrentScansPerRegion: 0,
scanAwsLicensedImages: false,
scanMachineIntervalInHours: 0,
},
awpAwsOnboardingId: "string",
awpCentralizedCloudAccountId: "string",
awpVersion: "string",
forceDelete: false,
shouldCreatePolicy: false,
});
type: dome9:AwpAwsOnboarding
properties:
agentlessAccountSettings:
customTags:
string: string
disabledRegions:
- string
inAccountScannerVpc: string
maxConcurrentScansPerRegion: 0
scanAwsLicensedImages: false
scanMachineIntervalInHours: 0
awpAwsOnboardingId: string
awpCentralizedCloudAccountId: string
awpVersion: string
cloudguardAccountId: string
crossAccountRoleExternalId: string
crossAccountRoleName: string
forceDelete: false
scanMode: string
shouldCreatePolicy: false
AwpAwsOnboarding 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 AwpAwsOnboarding resource accepts the following input properties:
- Cloudguard
Account stringId - The CloudGuard account id.
- Cross
Account stringRole External Id - The external id of the cross account role.
- Cross
Account stringRole Name - The name of the cross account role.
- Scan
Mode string - The scan mode. Valid values are "inAccount", "saas", "inAccountHub", "inAccountSub".
- Agentless
Account AwpSettings Aws Onboarding Agentless Account Settings - The agentless account settings.
- Awp
Aws stringOnboarding Id - Awp
Centralized stringCloud Account Id - Awp
Version string - Force
Delete bool - Should
Create boolPolicy - Whether to create a policy. Default is true.
- Cloudguard
Account stringId - The CloudGuard account id.
- Cross
Account stringRole External Id - The external id of the cross account role.
- Cross
Account stringRole Name - The name of the cross account role.
- Scan
Mode string - The scan mode. Valid values are "inAccount", "saas", "inAccountHub", "inAccountSub".
- Agentless
Account AwpSettings Aws Onboarding Agentless Account Settings Args - The agentless account settings.
- Awp
Aws stringOnboarding Id - Awp
Centralized stringCloud Account Id - Awp
Version string - Force
Delete bool - Should
Create boolPolicy - Whether to create a policy. Default is true.
- cloudguard
Account StringId - The CloudGuard account id.
- cross
Account StringRole External Id - The external id of the cross account role.
- cross
Account StringRole Name - The name of the cross account role.
- scan
Mode String - The scan mode. Valid values are "inAccount", "saas", "inAccountHub", "inAccountSub".
- agentless
Account AwpSettings Aws Onboarding Agentless Account Settings - The agentless account settings.
- awp
Aws StringOnboarding Id - awp
Centralized StringCloud Account Id - awp
Version String - force
Delete Boolean - should
Create BooleanPolicy - Whether to create a policy. Default is true.
- cloudguard
Account stringId - The CloudGuard account id.
- cross
Account stringRole External Id - The external id of the cross account role.
- cross
Account stringRole Name - The name of the cross account role.
- scan
Mode string - The scan mode. Valid values are "inAccount", "saas", "inAccountHub", "inAccountSub".
- agentless
Account AwpSettings Aws Onboarding Agentless Account Settings - The agentless account settings.
- awp
Aws stringOnboarding Id - awp
Centralized stringCloud Account Id - awp
Version string - force
Delete boolean - should
Create booleanPolicy - Whether to create a policy. Default is true.
- cloudguard_
account_ strid - The CloudGuard account id.
- cross_
account_ strrole_ external_ id - The external id of the cross account role.
- cross_
account_ strrole_ name - The name of the cross account role.
- scan_
mode str - The scan mode. Valid values are "inAccount", "saas", "inAccountHub", "inAccountSub".
- agentless_
account_ Awpsettings Aws Onboarding Agentless Account Settings Args - The agentless account settings.
- awp_
aws_ stronboarding_ id - awp_
centralized_ strcloud_ account_ id - awp_
version str - force_
delete bool - should_
create_ boolpolicy - Whether to create a policy. Default is true.
- cloudguard
Account StringId - The CloudGuard account id.
- cross
Account StringRole External Id - The external id of the cross account role.
- cross
Account StringRole Name - The name of the cross account role.
- scan
Mode String - The scan mode. Valid values are "inAccount", "saas", "inAccountHub", "inAccountSub".
- agentless
Account Property MapSettings - The agentless account settings.
- awp
Aws StringOnboarding Id - awp
Centralized StringCloud Account Id - awp
Version String - force
Delete Boolean - should
Create BooleanPolicy - Whether to create a policy. Default is true.
Outputs
All input properties are implicitly available as output properties. Additionally, the AwpAwsOnboarding 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 AwpAwsOnboarding Resource
Get an existing AwpAwsOnboarding 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?: AwpAwsOnboardingState, opts?: CustomResourceOptions): AwpAwsOnboarding
@staticmethod
def get(resource_name: str,
id: str,
opts: Optional[ResourceOptions] = None,
agentless_account_settings: Optional[AwpAwsOnboardingAgentlessAccountSettingsArgs] = None,
agentless_protection_enabled: Optional[bool] = None,
awp_aws_onboarding_id: Optional[str] = None,
awp_centralized_cloud_account_id: Optional[str] = None,
awp_version: Optional[str] = None,
cloud_account_id: Optional[str] = None,
cloud_provider: Optional[str] = None,
cloudguard_account_id: Optional[str] = None,
cross_account_role_external_id: Optional[str] = None,
cross_account_role_name: Optional[str] = None,
force_delete: Optional[bool] = None,
is_org_onboarding: Optional[bool] = 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) -> AwpAwsOnboarding
func GetAwpAwsOnboarding(ctx *Context, name string, id IDInput, state *AwpAwsOnboardingState, opts ...ResourceOption) (*AwpAwsOnboarding, error)
public static AwpAwsOnboarding Get(string name, Input<string> id, AwpAwsOnboardingState? state, CustomResourceOptions? opts = null)
public static AwpAwsOnboarding get(String name, Output<String> id, AwpAwsOnboardingState state, CustomResourceOptions options)
resources: _: type: dome9:AwpAwsOnboarding 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 Aws Onboarding Agentless Account Settings - The agentless account settings.
- Agentless
Protection boolEnabled - Whether agentless protection is enabled.
- Awp
Aws stringOnboarding Id - Awp
Centralized stringCloud Account Id - Awp
Version string - Cloud
Account stringId - The cloud guard account id.
- Cloud
Provider string - The cloud provider.
- Cloudguard
Account stringId - The CloudGuard account id.
- Cross
Account stringRole External Id - The external id of the cross account role.
- Cross
Account stringRole Name - The name of the cross account role.
- Force
Delete bool - Is
Org boolOnboarding - Whether is org onboarding.
- 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 Aws Onboarding Agentless Account Settings Args - The agentless account settings.
- Agentless
Protection boolEnabled - Whether agentless protection is enabled.
- Awp
Aws stringOnboarding Id - Awp
Centralized stringCloud Account Id - Awp
Version string - Cloud
Account stringId - The cloud guard account id.
- Cloud
Provider string - The cloud provider.
- Cloudguard
Account stringId - The CloudGuard account id.
- Cross
Account stringRole External Id - The external id of the cross account role.
- Cross
Account stringRole Name - The name of the cross account role.
- Force
Delete bool - Is
Org boolOnboarding - Whether is org onboarding.
- 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 Aws Onboarding Agentless Account Settings - The agentless account settings.
- agentless
Protection BooleanEnabled - Whether agentless protection is enabled.
- awp
Aws StringOnboarding Id - awp
Centralized StringCloud Account Id - awp
Version String - cloud
Account StringId - The cloud guard account id.
- cloud
Provider String - The cloud provider.
- cloudguard
Account StringId - The CloudGuard account id.
- cross
Account StringRole External Id - The external id of the cross account role.
- cross
Account StringRole Name - The name of the cross account role.
- force
Delete Boolean - is
Org BooleanOnboarding - Whether is org onboarding.
- 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 Aws Onboarding Agentless Account Settings - The agentless account settings.
- agentless
Protection booleanEnabled - Whether agentless protection is enabled.
- awp
Aws stringOnboarding Id - awp
Centralized stringCloud Account Id - awp
Version string - cloud
Account stringId - The cloud guard account id.
- cloud
Provider string - The cloud provider.
- cloudguard
Account stringId - The CloudGuard account id.
- cross
Account stringRole External Id - The external id of the cross account role.
- cross
Account stringRole Name - The name of the cross account role.
- force
Delete boolean - is
Org booleanOnboarding - Whether is org onboarding.
- 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 Aws Onboarding Agentless Account Settings Args - The agentless account settings.
- agentless_
protection_ boolenabled - Whether agentless protection is enabled.
- awp_
aws_ stronboarding_ id - awp_
centralized_ strcloud_ account_ id - awp_
version str - cloud_
account_ strid - The cloud guard account id.
- cloud_
provider str - The cloud provider.
- cloudguard_
account_ strid - The CloudGuard account id.
- cross_
account_ strrole_ external_ id - The external id of the cross account role.
- cross_
account_ strrole_ name - The name of the cross account role.
- force_
delete bool - is_
org_ boolonboarding - Whether is org onboarding.
- 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
Aws StringOnboarding Id - awp
Centralized StringCloud Account Id - awp
Version String - cloud
Account StringId - The cloud guard account id.
- cloud
Provider String - The cloud provider.
- cloudguard
Account StringId - The CloudGuard account id.
- cross
Account StringRole External Id - The external id of the cross account role.
- cross
Account StringRole Name - The name of the cross account role.
- force
Delete Boolean - is
Org BooleanOnboarding - Whether is org onboarding.
- 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
AwpAwsOnboardingAgentlessAccountSettings, AwpAwsOnboardingAgentlessAccountSettingsArgs
- Dictionary<string, string>
- The custom tags.
- Disabled
Regions List<string> - The disabled regions. valid values are "af-south-1", "ap-south-1", "eu-north-1", "eu-west-3", "eu-south-1", "eu-west-2", "eu-west-1", "ap-northeast-3", "ap-northeast-2", "me-south-1", "ap-northeast-1", "me-central-1", "ca-central-1", "sa-east-1", "ap-east-1", "ap-southeast-1", "ap-southeast-2", "eu-central-1", "ap-southeast-3", "us-east-1", "us-east-2", "us-west-1", "us-west-2"
- In
Account stringScanner Vpc - The VPC mode. Valid values are "ManagedByAWP" or "ManagedByCustomer".
- Max
Concurrent doubleScans Per Region - The max concurrent scans per region
- Scan
Aws boolLicensed Images - Scan AWS licensed images. Valid value is "inAccount"
- Scan
Machine doubleInterval In Hours - The scan machine interval in hours
- map[string]string
- The custom tags.
- Disabled
Regions []string - The disabled regions. valid values are "af-south-1", "ap-south-1", "eu-north-1", "eu-west-3", "eu-south-1", "eu-west-2", "eu-west-1", "ap-northeast-3", "ap-northeast-2", "me-south-1", "ap-northeast-1", "me-central-1", "ca-central-1", "sa-east-1", "ap-east-1", "ap-southeast-1", "ap-southeast-2", "eu-central-1", "ap-southeast-3", "us-east-1", "us-east-2", "us-west-1", "us-west-2"
- In
Account stringScanner Vpc - The VPC mode. Valid values are "ManagedByAWP" or "ManagedByCustomer".
- Max
Concurrent float64Scans Per Region - The max concurrent scans per region
- Scan
Aws boolLicensed Images - Scan AWS licensed images. Valid value is "inAccount"
- Scan
Machine float64Interval In Hours - The scan machine interval in hours
- Map<String,String>
- The custom tags.
- disabled
Regions List<String> - The disabled regions. valid values are "af-south-1", "ap-south-1", "eu-north-1", "eu-west-3", "eu-south-1", "eu-west-2", "eu-west-1", "ap-northeast-3", "ap-northeast-2", "me-south-1", "ap-northeast-1", "me-central-1", "ca-central-1", "sa-east-1", "ap-east-1", "ap-southeast-1", "ap-southeast-2", "eu-central-1", "ap-southeast-3", "us-east-1", "us-east-2", "us-west-1", "us-west-2"
- in
Account StringScanner Vpc - The VPC mode. Valid values are "ManagedByAWP" or "ManagedByCustomer".
- max
Concurrent DoubleScans Per Region - The max concurrent scans per region
- scan
Aws BooleanLicensed Images - Scan AWS licensed images. Valid value is "inAccount"
- scan
Machine DoubleInterval In Hours - The scan machine interval in hours
- {[key: string]: string}
- The custom tags.
- disabled
Regions string[] - The disabled regions. valid values are "af-south-1", "ap-south-1", "eu-north-1", "eu-west-3", "eu-south-1", "eu-west-2", "eu-west-1", "ap-northeast-3", "ap-northeast-2", "me-south-1", "ap-northeast-1", "me-central-1", "ca-central-1", "sa-east-1", "ap-east-1", "ap-southeast-1", "ap-southeast-2", "eu-central-1", "ap-southeast-3", "us-east-1", "us-east-2", "us-west-1", "us-west-2"
- in
Account stringScanner Vpc - The VPC mode. Valid values are "ManagedByAWP" or "ManagedByCustomer".
- max
Concurrent numberScans Per Region - The max concurrent scans per region
- scan
Aws booleanLicensed Images - Scan AWS licensed images. Valid value is "inAccount"
- scan
Machine numberInterval In Hours - The scan machine interval in hours
- Mapping[str, str]
- The custom tags.
- disabled_
regions Sequence[str] - The disabled regions. valid values are "af-south-1", "ap-south-1", "eu-north-1", "eu-west-3", "eu-south-1", "eu-west-2", "eu-west-1", "ap-northeast-3", "ap-northeast-2", "me-south-1", "ap-northeast-1", "me-central-1", "ca-central-1", "sa-east-1", "ap-east-1", "ap-southeast-1", "ap-southeast-2", "eu-central-1", "ap-southeast-3", "us-east-1", "us-east-2", "us-west-1", "us-west-2"
- in_
account_ strscanner_ vpc - The VPC mode. Valid values are "ManagedByAWP" or "ManagedByCustomer".
- max_
concurrent_ floatscans_ per_ region - The max concurrent scans per region
- scan_
aws_ boollicensed_ images - Scan AWS licensed images. Valid value is "inAccount"
- scan_
machine_ floatinterval_ in_ hours - The scan machine interval in hours
- Map<String>
- The custom tags.
- disabled
Regions List<String> - The disabled regions. valid values are "af-south-1", "ap-south-1", "eu-north-1", "eu-west-3", "eu-south-1", "eu-west-2", "eu-west-1", "ap-northeast-3", "ap-northeast-2", "me-south-1", "ap-northeast-1", "me-central-1", "ca-central-1", "sa-east-1", "ap-east-1", "ap-southeast-1", "ap-southeast-2", "eu-central-1", "ap-southeast-3", "us-east-1", "us-east-2", "us-west-1", "us-west-2"
- in
Account StringScanner Vpc - The VPC mode. Valid values are "ManagedByAWP" or "ManagedByCustomer".
- max
Concurrent NumberScans Per Region - The max concurrent scans per region
- scan
Aws BooleanLicensed Images - Scan AWS licensed images. Valid value is "inAccount"
- scan
Machine NumberInterval In Hours - The scan machine interval in hours
Import
The AWP AWS Onboarding can be imported; use
For example:
$ pulumi import dome9:index/awpAwsOnboarding:AwpAwsOnboarding test_awp_aws_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.