crowdstrike.FilevantagePolicy
Explore with Pulumi AI
This resource allows management of a FileVantage policy. A FileVantage policy is a collection of file integrity rules and rule groups that you can apply to host groups.
API Scopes
The following API scopes are required:
- Falcon FileVantage | Read & Write
Example Usage
Coming soon!
Coming soon!
Coming soon!
Coming soon!
package generated_program;
import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.crowdstrike.FilevantageRuleGroup;
import com.pulumi.crowdstrike.FilevantageRuleGroupArgs;
import com.pulumi.crowdstrike.inputs.FilevantageRuleGroupRuleArgs;
import com.pulumi.crowdstrike.FilevantagePolicy;
import com.pulumi.crowdstrike.FilevantagePolicyArgs;
import com.pulumi.crowdstrike.inputs.FilevantagePolicyScheduledExclusionArgs;
import com.pulumi.crowdstrike.inputs.FilevantagePolicyScheduledExclusionRepeatedArgs;
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 exampleFilevantageRuleGroup = new FilevantageRuleGroup("exampleFilevantageRuleGroup", FilevantageRuleGroupArgs.builder()
.description("Made with Pulumi")
.type("MacFiles")
.rules(FilevantageRuleGroupRuleArgs.builder()
.description("first rule")
.path("/path/to/example/")
.severity("High")
.depth("ANY")
.build())
.build());
var example2 = new FilevantageRuleGroup("example2", FilevantageRuleGroupArgs.builder()
.description("Made with Pulumi")
.type("MacFiles")
.rules(FilevantageRuleGroupRuleArgs.builder()
.description("first rule")
.path("/path/to/example/")
.severity("High")
.depth("ANY")
.enable_content_capture(true)
.watch_file_write_changes(true)
.file_names("example.exe")
.build())
.build());
var exampleFilevantagePolicy = new FilevantagePolicy("exampleFilevantagePolicy", FilevantagePolicyArgs.builder()
.enabled(true)
.description("Made with Pulumi")
.platformName("Mac")
.ruleGroups(
exampleFilevantageRuleGroup.id(),
example2.id())
.scheduledExclusions(
FilevantagePolicyScheduledExclusionArgs.builder()
.name("policy1")
.description("Run the first 3 days of the month. All day.")
.start_date("2024-05-21")
.start_time("11:09")
.timezone("US/Central")
.processes("**/example.exe,/path/to/example2.exe")
.repeated(FilevantagePolicyScheduledExclusionRepeatedArgs.builder()
.allDay(true)
.frequency("monthly")
.monthlyOccurrence("Days")
.daysOfMonth(
1,
2,
3)
.build())
.build(),
FilevantagePolicyScheduledExclusionArgs.builder()
.name("policy2")
.description("Run monday, tuesday, wednesday. 11:09 - 12:10.")
.start_date("2024-05-21")
.start_time("11:09")
.users("admin*,example")
.timezone("US/Central")
.repeated(FilevantagePolicyScheduledExclusionRepeatedArgs.builder()
.allDay(false)
.startTime("11:09")
.endTime("12:10")
.frequency("weekly")
.daysOfWeek(
"Monday",
"Tuesday",
"Wednesday")
.build())
.build())
.build());
ctx.export("filevantagePolicy", exampleFilevantagePolicy);
}
}
resources:
exampleFilevantageRuleGroup:
type: crowdstrike:FilevantageRuleGroup
properties:
description: Made with Pulumi
type: MacFiles
rules:
- description: first rule
path: /path/to/example/
severity: High
depth: ANY
example2:
type: crowdstrike:FilevantageRuleGroup
properties:
description: Made with Pulumi
type: MacFiles
rules:
- description: first rule
path: /path/to/example/
severity: High
depth: ANY
enable_content_capture: true
watch_file_write_changes: true
file_names:
- example.exe
exampleFilevantagePolicy:
type: crowdstrike:FilevantagePolicy
properties:
enabled: true
description: Made with Pulumi
platformName: Mac
# host_groups = ["1232313"]
ruleGroups:
- ${exampleFilevantageRuleGroup.id}
- ${example2.id}
scheduledExclusions:
- name: policy1
description: Run the first 3 days of the month. All day.
start_date: 2024-05-21
start_time: 11:09
timezone: US/Central
processes: '**/example.exe,/path/to/example2.exe'
repeated:
allDay: true
frequency: monthly
monthlyOccurrence: Days
daysOfMonth:
- 1
- 2
- 3
- name: policy2
description: Run monday, tuesday, wednesday. 11:09 - 12:10.
start_date: 2024-05-21
start_time: 11:09
users: admin*,example
timezone: US/Central
repeated:
allDay: false
startTime: 11:09
endTime: 12:10
frequency: weekly
daysOfWeek:
- Monday
- Tuesday
- Wednesday
outputs:
filevantagePolicy: ${exampleFilevantagePolicy}
Create FilevantagePolicy Resource
Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.
Constructor syntax
new FilevantagePolicy(name: string, args: FilevantagePolicyArgs, opts?: CustomResourceOptions);
@overload
def FilevantagePolicy(resource_name: str,
args: FilevantagePolicyArgs,
opts: Optional[ResourceOptions] = None)
@overload
def FilevantagePolicy(resource_name: str,
opts: Optional[ResourceOptions] = None,
platform_name: Optional[str] = None,
description: Optional[str] = None,
enabled: Optional[bool] = None,
host_groups: Optional[Sequence[str]] = None,
name: Optional[str] = None,
rule_groups: Optional[Sequence[str]] = None,
scheduled_exclusions: Optional[Sequence[FilevantagePolicyScheduledExclusionArgs]] = None)
func NewFilevantagePolicy(ctx *Context, name string, args FilevantagePolicyArgs, opts ...ResourceOption) (*FilevantagePolicy, error)
public FilevantagePolicy(string name, FilevantagePolicyArgs args, CustomResourceOptions? opts = null)
public FilevantagePolicy(String name, FilevantagePolicyArgs args)
public FilevantagePolicy(String name, FilevantagePolicyArgs args, CustomResourceOptions options)
type: crowdstrike:FilevantagePolicy
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 FilevantagePolicyArgs
- 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 FilevantagePolicyArgs
- 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 FilevantagePolicyArgs
- The arguments to resource properties.
- opts ResourceOption
- Bag of options to control resource's behavior.
- name string
- The unique name of the resource.
- args FilevantagePolicyArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- name String
- The unique name of the resource.
- args FilevantagePolicyArgs
- 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 filevantagePolicyResource = new Crowdstrike.FilevantagePolicy("filevantagePolicyResource", new()
{
PlatformName = "string",
Description = "string",
Enabled = false,
HostGroups = new[]
{
"string",
},
Name = "string",
RuleGroups = new[]
{
"string",
},
ScheduledExclusions = new[]
{
new Crowdstrike.Inputs.FilevantagePolicyScheduledExclusionArgs
{
Name = "string",
StartDate = "string",
StartTime = "string",
Timezone = "string",
Description = "string",
EndDate = "string",
EndTime = "string",
Id = "string",
Processes = "string",
Repeated = new Crowdstrike.Inputs.FilevantagePolicyScheduledExclusionRepeatedArgs
{
AllDay = false,
Frequency = "string",
DaysOfMonths = new[]
{
0,
},
DaysOfWeeks = new[]
{
"string",
},
EndTime = "string",
MonthlyOccurrence = "string",
StartTime = "string",
},
Users = "string",
},
},
});
example, err := crowdstrike.NewFilevantagePolicy(ctx, "filevantagePolicyResource", &crowdstrike.FilevantagePolicyArgs{
PlatformName: pulumi.String("string"),
Description: pulumi.String("string"),
Enabled: pulumi.Bool(false),
HostGroups: pulumi.StringArray{
pulumi.String("string"),
},
Name: pulumi.String("string"),
RuleGroups: pulumi.StringArray{
pulumi.String("string"),
},
ScheduledExclusions: crowdstrike.FilevantagePolicyScheduledExclusionArray{
&crowdstrike.FilevantagePolicyScheduledExclusionArgs{
Name: pulumi.String("string"),
StartDate: pulumi.String("string"),
StartTime: pulumi.String("string"),
Timezone: pulumi.String("string"),
Description: pulumi.String("string"),
EndDate: pulumi.String("string"),
EndTime: pulumi.String("string"),
Id: pulumi.String("string"),
Processes: pulumi.String("string"),
Repeated: &crowdstrike.FilevantagePolicyScheduledExclusionRepeatedArgs{
AllDay: pulumi.Bool(false),
Frequency: pulumi.String("string"),
DaysOfMonths: pulumi.IntArray{
pulumi.Int(0),
},
DaysOfWeeks: pulumi.StringArray{
pulumi.String("string"),
},
EndTime: pulumi.String("string"),
MonthlyOccurrence: pulumi.String("string"),
StartTime: pulumi.String("string"),
},
Users: pulumi.String("string"),
},
},
})
var filevantagePolicyResource = new FilevantagePolicy("filevantagePolicyResource", FilevantagePolicyArgs.builder()
.platformName("string")
.description("string")
.enabled(false)
.hostGroups("string")
.name("string")
.ruleGroups("string")
.scheduledExclusions(FilevantagePolicyScheduledExclusionArgs.builder()
.name("string")
.startDate("string")
.startTime("string")
.timezone("string")
.description("string")
.endDate("string")
.endTime("string")
.id("string")
.processes("string")
.repeated(FilevantagePolicyScheduledExclusionRepeatedArgs.builder()
.allDay(false)
.frequency("string")
.daysOfMonths(0)
.daysOfWeeks("string")
.endTime("string")
.monthlyOccurrence("string")
.startTime("string")
.build())
.users("string")
.build())
.build());
filevantage_policy_resource = crowdstrike.FilevantagePolicy("filevantagePolicyResource",
platform_name="string",
description="string",
enabled=False,
host_groups=["string"],
name="string",
rule_groups=["string"],
scheduled_exclusions=[{
"name": "string",
"start_date": "string",
"start_time": "string",
"timezone": "string",
"description": "string",
"end_date": "string",
"end_time": "string",
"id": "string",
"processes": "string",
"repeated": {
"all_day": False,
"frequency": "string",
"days_of_months": [0],
"days_of_weeks": ["string"],
"end_time": "string",
"monthly_occurrence": "string",
"start_time": "string",
},
"users": "string",
}])
const filevantagePolicyResource = new crowdstrike.FilevantagePolicy("filevantagePolicyResource", {
platformName: "string",
description: "string",
enabled: false,
hostGroups: ["string"],
name: "string",
ruleGroups: ["string"],
scheduledExclusions: [{
name: "string",
startDate: "string",
startTime: "string",
timezone: "string",
description: "string",
endDate: "string",
endTime: "string",
id: "string",
processes: "string",
repeated: {
allDay: false,
frequency: "string",
daysOfMonths: [0],
daysOfWeeks: ["string"],
endTime: "string",
monthlyOccurrence: "string",
startTime: "string",
},
users: "string",
}],
});
type: crowdstrike:FilevantagePolicy
properties:
description: string
enabled: false
hostGroups:
- string
name: string
platformName: string
ruleGroups:
- string
scheduledExclusions:
- description: string
endDate: string
endTime: string
id: string
name: string
processes: string
repeated:
allDay: false
daysOfMonths:
- 0
daysOfWeeks:
- string
endTime: string
frequency: string
monthlyOccurrence: string
startTime: string
startDate: string
startTime: string
timezone: string
users: string
FilevantagePolicy 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 FilevantagePolicy resource accepts the following input properties:
- Platform
Name string - Platform for the filevantage policy to manage. (Windows, Mac, Linux)
- Description string
- Description of the filevantage policy.
- Enabled bool
- Enable the filevantage policy.
- Host
Groups List<string> - Host Group ids to attach to the filevantage policy.
- Name string
- Name of the filevantage policy.
- Rule
Groups List<string> - Rule Group ids to attach to the filevantage policy. Precedence is based on the order of the list. Rule groups must be the same type as the policy.
- Scheduled
Exclusions List<CrowdStrike. Crowdstrike. Inputs. Filevantage Policy Scheduled Exclusion> - Scheduled exclusions for the filevantage policy.
- Platform
Name string - Platform for the filevantage policy to manage. (Windows, Mac, Linux)
- Description string
- Description of the filevantage policy.
- Enabled bool
- Enable the filevantage policy.
- Host
Groups []string - Host Group ids to attach to the filevantage policy.
- Name string
- Name of the filevantage policy.
- Rule
Groups []string - Rule Group ids to attach to the filevantage policy. Precedence is based on the order of the list. Rule groups must be the same type as the policy.
- Scheduled
Exclusions []FilevantagePolicy Scheduled Exclusion Args - Scheduled exclusions for the filevantage policy.
- platform
Name String - Platform for the filevantage policy to manage. (Windows, Mac, Linux)
- description String
- Description of the filevantage policy.
- enabled Boolean
- Enable the filevantage policy.
- host
Groups List<String> - Host Group ids to attach to the filevantage policy.
- name String
- Name of the filevantage policy.
- rule
Groups List<String> - Rule Group ids to attach to the filevantage policy. Precedence is based on the order of the list. Rule groups must be the same type as the policy.
- scheduled
Exclusions List<FilevantagePolicy Scheduled Exclusion> - Scheduled exclusions for the filevantage policy.
- platform
Name string - Platform for the filevantage policy to manage. (Windows, Mac, Linux)
- description string
- Description of the filevantage policy.
- enabled boolean
- Enable the filevantage policy.
- host
Groups string[] - Host Group ids to attach to the filevantage policy.
- name string
- Name of the filevantage policy.
- rule
Groups string[] - Rule Group ids to attach to the filevantage policy. Precedence is based on the order of the list. Rule groups must be the same type as the policy.
- scheduled
Exclusions FilevantagePolicy Scheduled Exclusion[] - Scheduled exclusions for the filevantage policy.
- platform_
name str - Platform for the filevantage policy to manage. (Windows, Mac, Linux)
- description str
- Description of the filevantage policy.
- enabled bool
- Enable the filevantage policy.
- host_
groups Sequence[str] - Host Group ids to attach to the filevantage policy.
- name str
- Name of the filevantage policy.
- rule_
groups Sequence[str] - Rule Group ids to attach to the filevantage policy. Precedence is based on the order of the list. Rule groups must be the same type as the policy.
- scheduled_
exclusions Sequence[FilevantagePolicy Scheduled Exclusion Args] - Scheduled exclusions for the filevantage policy.
- platform
Name String - Platform for the filevantage policy to manage. (Windows, Mac, Linux)
- description String
- Description of the filevantage policy.
- enabled Boolean
- Enable the filevantage policy.
- host
Groups List<String> - Host Group ids to attach to the filevantage policy.
- name String
- Name of the filevantage policy.
- rule
Groups List<String> - Rule Group ids to attach to the filevantage policy. Precedence is based on the order of the list. Rule groups must be the same type as the policy.
- scheduled
Exclusions List<Property Map> - Scheduled exclusions for the filevantage policy.
Outputs
All input properties are implicitly available as output properties. Additionally, the FilevantagePolicy resource produces the following output properties:
- Id string
- The provider-assigned unique ID for this managed resource.
- Last
Updated string
- Id string
- The provider-assigned unique ID for this managed resource.
- Last
Updated string
- id String
- The provider-assigned unique ID for this managed resource.
- last
Updated String
- id string
- The provider-assigned unique ID for this managed resource.
- last
Updated string
- id str
- The provider-assigned unique ID for this managed resource.
- last_
updated str
- id String
- The provider-assigned unique ID for this managed resource.
- last
Updated String
Look up Existing FilevantagePolicy Resource
Get an existing FilevantagePolicy 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?: FilevantagePolicyState, opts?: CustomResourceOptions): FilevantagePolicy
@staticmethod
def get(resource_name: str,
id: str,
opts: Optional[ResourceOptions] = None,
description: Optional[str] = None,
enabled: Optional[bool] = None,
host_groups: Optional[Sequence[str]] = None,
last_updated: Optional[str] = None,
name: Optional[str] = None,
platform_name: Optional[str] = None,
rule_groups: Optional[Sequence[str]] = None,
scheduled_exclusions: Optional[Sequence[FilevantagePolicyScheduledExclusionArgs]] = None) -> FilevantagePolicy
func GetFilevantagePolicy(ctx *Context, name string, id IDInput, state *FilevantagePolicyState, opts ...ResourceOption) (*FilevantagePolicy, error)
public static FilevantagePolicy Get(string name, Input<string> id, FilevantagePolicyState? state, CustomResourceOptions? opts = null)
public static FilevantagePolicy get(String name, Output<String> id, FilevantagePolicyState state, CustomResourceOptions options)
resources: _: type: crowdstrike:FilevantagePolicy 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.
- Description string
- Description of the filevantage policy.
- Enabled bool
- Enable the filevantage policy.
- Host
Groups List<string> - Host Group ids to attach to the filevantage policy.
- Last
Updated string - Name string
- Name of the filevantage policy.
- Platform
Name string - Platform for the filevantage policy to manage. (Windows, Mac, Linux)
- Rule
Groups List<string> - Rule Group ids to attach to the filevantage policy. Precedence is based on the order of the list. Rule groups must be the same type as the policy.
- Scheduled
Exclusions List<CrowdStrike. Crowdstrike. Inputs. Filevantage Policy Scheduled Exclusion> - Scheduled exclusions for the filevantage policy.
- Description string
- Description of the filevantage policy.
- Enabled bool
- Enable the filevantage policy.
- Host
Groups []string - Host Group ids to attach to the filevantage policy.
- Last
Updated string - Name string
- Name of the filevantage policy.
- Platform
Name string - Platform for the filevantage policy to manage. (Windows, Mac, Linux)
- Rule
Groups []string - Rule Group ids to attach to the filevantage policy. Precedence is based on the order of the list. Rule groups must be the same type as the policy.
- Scheduled
Exclusions []FilevantagePolicy Scheduled Exclusion Args - Scheduled exclusions for the filevantage policy.
- description String
- Description of the filevantage policy.
- enabled Boolean
- Enable the filevantage policy.
- host
Groups List<String> - Host Group ids to attach to the filevantage policy.
- last
Updated String - name String
- Name of the filevantage policy.
- platform
Name String - Platform for the filevantage policy to manage. (Windows, Mac, Linux)
- rule
Groups List<String> - Rule Group ids to attach to the filevantage policy. Precedence is based on the order of the list. Rule groups must be the same type as the policy.
- scheduled
Exclusions List<FilevantagePolicy Scheduled Exclusion> - Scheduled exclusions for the filevantage policy.
- description string
- Description of the filevantage policy.
- enabled boolean
- Enable the filevantage policy.
- host
Groups string[] - Host Group ids to attach to the filevantage policy.
- last
Updated string - name string
- Name of the filevantage policy.
- platform
Name string - Platform for the filevantage policy to manage. (Windows, Mac, Linux)
- rule
Groups string[] - Rule Group ids to attach to the filevantage policy. Precedence is based on the order of the list. Rule groups must be the same type as the policy.
- scheduled
Exclusions FilevantagePolicy Scheduled Exclusion[] - Scheduled exclusions for the filevantage policy.
- description str
- Description of the filevantage policy.
- enabled bool
- Enable the filevantage policy.
- host_
groups Sequence[str] - Host Group ids to attach to the filevantage policy.
- last_
updated str - name str
- Name of the filevantage policy.
- platform_
name str - Platform for the filevantage policy to manage. (Windows, Mac, Linux)
- rule_
groups Sequence[str] - Rule Group ids to attach to the filevantage policy. Precedence is based on the order of the list. Rule groups must be the same type as the policy.
- scheduled_
exclusions Sequence[FilevantagePolicy Scheduled Exclusion Args] - Scheduled exclusions for the filevantage policy.
- description String
- Description of the filevantage policy.
- enabled Boolean
- Enable the filevantage policy.
- host
Groups List<String> - Host Group ids to attach to the filevantage policy.
- last
Updated String - name String
- Name of the filevantage policy.
- platform
Name String - Platform for the filevantage policy to manage. (Windows, Mac, Linux)
- rule
Groups List<String> - Rule Group ids to attach to the filevantage policy. Precedence is based on the order of the list. Rule groups must be the same type as the policy.
- scheduled
Exclusions List<Property Map> - Scheduled exclusions for the filevantage policy.
Supporting Types
FilevantagePolicyScheduledExclusion, FilevantagePolicyScheduledExclusionArgs
- Name string
- Name of the scheduled exclusion.
- Start
Date string - The start date of the scheduled exclusion. Format: YYYY-MM-DD
- Start
Time string - The start time of the scheduled exclusion in 24 hour format. Format: HH:MM
- Timezone string
- The timezone to use for the time fields. See https://en.wikipedia.org/wiki/Listoftzdatabasetime_zones.
- Description string
- Description of the scheduled exclusion.
- End
Date string - The end date of the scheduled exclusion. Format: YYYY-MM-DD
- End
Time string - The end time of the scheduled exclusion in 24 hour format. Format: HH:MM
- Id string
- Identifier for the scheduled exclusion.
- Processes string
- A comma separated list of processes to exclude changes from. Example: **/runme.sh excludes changes made by runme.sh in any location
- Repeated
Crowd
Strike. Crowdstrike. Inputs. Filevantage Policy Scheduled Exclusion Repeated - Repeated scheduled exclusion
- Users string
- A comma separated list of users to exclude changes from. Example: user1,user2,admin* excludes changes made by user1, user2, and any user starting with admin
- Name string
- Name of the scheduled exclusion.
- Start
Date string - The start date of the scheduled exclusion. Format: YYYY-MM-DD
- Start
Time string - The start time of the scheduled exclusion in 24 hour format. Format: HH:MM
- Timezone string
- The timezone to use for the time fields. See https://en.wikipedia.org/wiki/Listoftzdatabasetime_zones.
- Description string
- Description of the scheduled exclusion.
- End
Date string - The end date of the scheduled exclusion. Format: YYYY-MM-DD
- End
Time string - The end time of the scheduled exclusion in 24 hour format. Format: HH:MM
- Id string
- Identifier for the scheduled exclusion.
- Processes string
- A comma separated list of processes to exclude changes from. Example: **/runme.sh excludes changes made by runme.sh in any location
- Repeated
Filevantage
Policy Scheduled Exclusion Repeated - Repeated scheduled exclusion
- Users string
- A comma separated list of users to exclude changes from. Example: user1,user2,admin* excludes changes made by user1, user2, and any user starting with admin
- name String
- Name of the scheduled exclusion.
- start
Date String - The start date of the scheduled exclusion. Format: YYYY-MM-DD
- start
Time String - The start time of the scheduled exclusion in 24 hour format. Format: HH:MM
- timezone String
- The timezone to use for the time fields. See https://en.wikipedia.org/wiki/Listoftzdatabasetime_zones.
- description String
- Description of the scheduled exclusion.
- end
Date String - The end date of the scheduled exclusion. Format: YYYY-MM-DD
- end
Time String - The end time of the scheduled exclusion in 24 hour format. Format: HH:MM
- id String
- Identifier for the scheduled exclusion.
- processes String
- A comma separated list of processes to exclude changes from. Example: **/runme.sh excludes changes made by runme.sh in any location
- repeated
Filevantage
Policy Scheduled Exclusion Repeated - Repeated scheduled exclusion
- users String
- A comma separated list of users to exclude changes from. Example: user1,user2,admin* excludes changes made by user1, user2, and any user starting with admin
- name string
- Name of the scheduled exclusion.
- start
Date string - The start date of the scheduled exclusion. Format: YYYY-MM-DD
- start
Time string - The start time of the scheduled exclusion in 24 hour format. Format: HH:MM
- timezone string
- The timezone to use for the time fields. See https://en.wikipedia.org/wiki/Listoftzdatabasetime_zones.
- description string
- Description of the scheduled exclusion.
- end
Date string - The end date of the scheduled exclusion. Format: YYYY-MM-DD
- end
Time string - The end time of the scheduled exclusion in 24 hour format. Format: HH:MM
- id string
- Identifier for the scheduled exclusion.
- processes string
- A comma separated list of processes to exclude changes from. Example: **/runme.sh excludes changes made by runme.sh in any location
- repeated
Filevantage
Policy Scheduled Exclusion Repeated - Repeated scheduled exclusion
- users string
- A comma separated list of users to exclude changes from. Example: user1,user2,admin* excludes changes made by user1, user2, and any user starting with admin
- name str
- Name of the scheduled exclusion.
- start_
date str - The start date of the scheduled exclusion. Format: YYYY-MM-DD
- start_
time str - The start time of the scheduled exclusion in 24 hour format. Format: HH:MM
- timezone str
- The timezone to use for the time fields. See https://en.wikipedia.org/wiki/Listoftzdatabasetime_zones.
- description str
- Description of the scheduled exclusion.
- end_
date str - The end date of the scheduled exclusion. Format: YYYY-MM-DD
- end_
time str - The end time of the scheduled exclusion in 24 hour format. Format: HH:MM
- id str
- Identifier for the scheduled exclusion.
- processes str
- A comma separated list of processes to exclude changes from. Example: **/runme.sh excludes changes made by runme.sh in any location
- repeated
Filevantage
Policy Scheduled Exclusion Repeated - Repeated scheduled exclusion
- users str
- A comma separated list of users to exclude changes from. Example: user1,user2,admin* excludes changes made by user1, user2, and any user starting with admin
- name String
- Name of the scheduled exclusion.
- start
Date String - The start date of the scheduled exclusion. Format: YYYY-MM-DD
- start
Time String - The start time of the scheduled exclusion in 24 hour format. Format: HH:MM
- timezone String
- The timezone to use for the time fields. See https://en.wikipedia.org/wiki/Listoftzdatabasetime_zones.
- description String
- Description of the scheduled exclusion.
- end
Date String - The end date of the scheduled exclusion. Format: YYYY-MM-DD
- end
Time String - The end time of the scheduled exclusion in 24 hour format. Format: HH:MM
- id String
- Identifier for the scheduled exclusion.
- processes String
- A comma separated list of processes to exclude changes from. Example: **/runme.sh excludes changes made by runme.sh in any location
- repeated Property Map
- Repeated scheduled exclusion
- users String
- A comma separated list of users to exclude changes from. Example: user1,user2,admin* excludes changes made by user1, user2, and any user starting with admin
FilevantagePolicyScheduledExclusionRepeated, FilevantagePolicyScheduledExclusionRepeatedArgs
- All
Day bool - If the exclusion is all day.
- Frequency string
- The frequency of the exclusion. Options: daily, weekly, monthly
- Days
Of List<int>Months - The days of the month to allow the exclusion. Required if frequency is set to monthly and monthly_occurrence is set to days. Options: 1-31
- Days
Of List<string>Weeks - The days of the week to allow the exclusion. Required if frequency is set to weekly or set to monthly and monthly_occurrence is set to a week. Options: Sunday, Monday, Tuesday, Wednesday, Thursday, Friday, Saturday
- End
Time string - The end time to end the scheduled exclusion in 24 hour format. Format: HH:MM required if all_day is false
- Monthly
Occurrence string - The monthly occurrence of the exclusion. Either specify a week (first, second, third, fourth) or set to days to specify days of the month. Options: first, second, third, fourth, days. Required if frequency is set to monthly
- Start
Time string - The start time to allow the scheduled exclusion in 24 hour format. Format: HH:MM required if all_day is false
- All
Day bool - If the exclusion is all day.
- Frequency string
- The frequency of the exclusion. Options: daily, weekly, monthly
- Days
Of []intMonths - The days of the month to allow the exclusion. Required if frequency is set to monthly and monthly_occurrence is set to days. Options: 1-31
- Days
Of []stringWeeks - The days of the week to allow the exclusion. Required if frequency is set to weekly or set to monthly and monthly_occurrence is set to a week. Options: Sunday, Monday, Tuesday, Wednesday, Thursday, Friday, Saturday
- End
Time string - The end time to end the scheduled exclusion in 24 hour format. Format: HH:MM required if all_day is false
- Monthly
Occurrence string - The monthly occurrence of the exclusion. Either specify a week (first, second, third, fourth) or set to days to specify days of the month. Options: first, second, third, fourth, days. Required if frequency is set to monthly
- Start
Time string - The start time to allow the scheduled exclusion in 24 hour format. Format: HH:MM required if all_day is false
- all
Day Boolean - If the exclusion is all day.
- frequency String
- The frequency of the exclusion. Options: daily, weekly, monthly
- days
Of List<Integer>Months - The days of the month to allow the exclusion. Required if frequency is set to monthly and monthly_occurrence is set to days. Options: 1-31
- days
Of List<String>Weeks - The days of the week to allow the exclusion. Required if frequency is set to weekly or set to monthly and monthly_occurrence is set to a week. Options: Sunday, Monday, Tuesday, Wednesday, Thursday, Friday, Saturday
- end
Time String - The end time to end the scheduled exclusion in 24 hour format. Format: HH:MM required if all_day is false
- monthly
Occurrence String - The monthly occurrence of the exclusion. Either specify a week (first, second, third, fourth) or set to days to specify days of the month. Options: first, second, third, fourth, days. Required if frequency is set to monthly
- start
Time String - The start time to allow the scheduled exclusion in 24 hour format. Format: HH:MM required if all_day is false
- all
Day boolean - If the exclusion is all day.
- frequency string
- The frequency of the exclusion. Options: daily, weekly, monthly
- days
Of number[]Months - The days of the month to allow the exclusion. Required if frequency is set to monthly and monthly_occurrence is set to days. Options: 1-31
- days
Of string[]Weeks - The days of the week to allow the exclusion. Required if frequency is set to weekly or set to monthly and monthly_occurrence is set to a week. Options: Sunday, Monday, Tuesday, Wednesday, Thursday, Friday, Saturday
- end
Time string - The end time to end the scheduled exclusion in 24 hour format. Format: HH:MM required if all_day is false
- monthly
Occurrence string - The monthly occurrence of the exclusion. Either specify a week (first, second, third, fourth) or set to days to specify days of the month. Options: first, second, third, fourth, days. Required if frequency is set to monthly
- start
Time string - The start time to allow the scheduled exclusion in 24 hour format. Format: HH:MM required if all_day is false
- all_
day bool - If the exclusion is all day.
- frequency str
- The frequency of the exclusion. Options: daily, weekly, monthly
- days_
of_ Sequence[int]months - The days of the month to allow the exclusion. Required if frequency is set to monthly and monthly_occurrence is set to days. Options: 1-31
- days_
of_ Sequence[str]weeks - The days of the week to allow the exclusion. Required if frequency is set to weekly or set to monthly and monthly_occurrence is set to a week. Options: Sunday, Monday, Tuesday, Wednesday, Thursday, Friday, Saturday
- end_
time str - The end time to end the scheduled exclusion in 24 hour format. Format: HH:MM required if all_day is false
- monthly_
occurrence str - The monthly occurrence of the exclusion. Either specify a week (first, second, third, fourth) or set to days to specify days of the month. Options: first, second, third, fourth, days. Required if frequency is set to monthly
- start_
time str - The start time to allow the scheduled exclusion in 24 hour format. Format: HH:MM required if all_day is false
- all
Day Boolean - If the exclusion is all day.
- frequency String
- The frequency of the exclusion. Options: daily, weekly, monthly
- days
Of List<Number>Months - The days of the month to allow the exclusion. Required if frequency is set to monthly and monthly_occurrence is set to days. Options: 1-31
- days
Of List<String>Weeks - The days of the week to allow the exclusion. Required if frequency is set to weekly or set to monthly and monthly_occurrence is set to a week. Options: Sunday, Monday, Tuesday, Wednesday, Thursday, Friday, Saturday
- end
Time String - The end time to end the scheduled exclusion in 24 hour format. Format: HH:MM required if all_day is false
- monthly
Occurrence String - The monthly occurrence of the exclusion. Either specify a week (first, second, third, fourth) or set to days to specify days of the month. Options: first, second, third, fourth, days. Required if frequency is set to monthly
- start
Time String - The start time to allow the scheduled exclusion in 24 hour format. Format: HH:MM required if all_day is false
Import
filvantage policy can be imported by specifying the policy id.
$ pulumi import crowdstrike:index/filevantagePolicy:FilevantagePolicy example 7fb858a949034a0cbca175f660f1e769
To learn more about importing existing cloud resources, see Importing resources.
Package Details
- Repository
- crowdstrike crowdstrike/pulumi-crowdstrike
- License
- Apache-2.0
- Notes
- This Pulumi package is based on the
crowdstrike
Terraform Provider.