zia.BrowserControlSettings
Explore with Pulumi AI
The zia_browser_control_policy resource allows you to update the malware protection policy configuration details. To learn more see Configuring the Browser Control Policy
Example Usage
resource "zia_browser_control_policy" "this" {
plugin_check_frequency = "DAILY"
bypass_plugins = ["ACROBAT", "FLASH", "SHOCKWAVE"]
bypass_applications = ["OUTLOOKEXP", "MSOFFICE"]
blocked_internet_explorer_versions = ["IE10", "MSE81", "MSE92"]
blocked_chrome_versions = ["CH143", "CH142"]
blocked_firefox_versions = ["MF145", "MF144"]
blocked_safari_versions = ["AS19", "AS18"]
blocked_opera_versions = ["O129X", "O130X"]
bypass_all_browsers = true
allow_all_browsers = true
enable_warnings = true
}
Enable Smart Isolation
data "zia_cloud_browser_isolation_profile" "this" {
name = "ZS_CBI_Profile1"
}
resource "zia_browser_control_policy" "this" {
plugin_check_frequency = "DAILY"
bypass_plugins = ["ACROBAT", "FLASH", "SHOCKWAVE"]
bypass_applications = ["OUTLOOKEXP", "MSOFFICE"]
blocked_internet_explorer_versions = ["IE10", "MSE81", "MSE92"]
blocked_chrome_versions = ["CH143", "CH142"]
blocked_firefox_versions = ["MF145", "MF144"]
blocked_safari_versions = ["AS19", "AS18"]
blocked_opera_versions = ["O129X", "O130X"]
bypass_all_browsers = true
allow_all_browsers = true
enable_warnings = true
enable_smart_browser_isolation = true
smart_isolation_profile {
id = data.zia_cloud_browser_isolation_profile.this.id
}
}
Create BrowserControlSettings Resource
Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.
Constructor syntax
new BrowserControlSettings(name: string, args?: BrowserControlSettingsArgs, opts?: CustomResourceOptions);
@overload
def BrowserControlSettings(resource_name: str,
args: Optional[BrowserControlSettingsArgs] = None,
opts: Optional[ResourceOptions] = None)
@overload
def BrowserControlSettings(resource_name: str,
opts: Optional[ResourceOptions] = None,
allow_all_browsers: Optional[bool] = None,
blocked_chrome_versions: Optional[Sequence[str]] = None,
blocked_firefox_versions: Optional[Sequence[str]] = None,
blocked_internet_explorer_versions: Optional[Sequence[str]] = None,
blocked_opera_versions: Optional[Sequence[str]] = None,
blocked_safari_versions: Optional[Sequence[str]] = None,
bypass_all_browsers: Optional[bool] = None,
bypass_applications: Optional[Sequence[str]] = None,
bypass_plugins: Optional[Sequence[str]] = None,
enable_smart_browser_isolation: Optional[bool] = None,
enable_warnings: Optional[bool] = None,
plugin_check_frequency: Optional[str] = None,
smart_isolation_groups: Optional[BrowserControlSettingsSmartIsolationGroupsArgs] = None,
smart_isolation_profiles: Optional[Sequence[BrowserControlSettingsSmartIsolationProfileArgs]] = None,
smart_isolation_users: Optional[BrowserControlSettingsSmartIsolationUsersArgs] = None)
func NewBrowserControlSettings(ctx *Context, name string, args *BrowserControlSettingsArgs, opts ...ResourceOption) (*BrowserControlSettings, error)
public BrowserControlSettings(string name, BrowserControlSettingsArgs? args = null, CustomResourceOptions? opts = null)
public BrowserControlSettings(String name, BrowserControlSettingsArgs args)
public BrowserControlSettings(String name, BrowserControlSettingsArgs args, CustomResourceOptions options)
type: zia:BrowserControlSettings
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 BrowserControlSettingsArgs
- 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 BrowserControlSettingsArgs
- 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 BrowserControlSettingsArgs
- The arguments to resource properties.
- opts ResourceOption
- Bag of options to control resource's behavior.
- name string
- The unique name of the resource.
- args BrowserControlSettingsArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- name String
- The unique name of the resource.
- args BrowserControlSettingsArgs
- 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 browserControlSettingsResource = new Zia.BrowserControlSettings("browserControlSettingsResource", new()
{
AllowAllBrowsers = false,
BlockedChromeVersions = new[]
{
"string",
},
BlockedFirefoxVersions = new[]
{
"string",
},
BlockedInternetExplorerVersions = new[]
{
"string",
},
BlockedOperaVersions = new[]
{
"string",
},
BlockedSafariVersions = new[]
{
"string",
},
BypassAllBrowsers = false,
BypassApplications = new[]
{
"string",
},
BypassPlugins = new[]
{
"string",
},
EnableSmartBrowserIsolation = false,
EnableWarnings = false,
PluginCheckFrequency = "string",
SmartIsolationGroups = new Zia.Inputs.BrowserControlSettingsSmartIsolationGroupsArgs
{
Ids = new[]
{
0,
},
},
SmartIsolationProfiles = new[]
{
new Zia.Inputs.BrowserControlSettingsSmartIsolationProfileArgs
{
Id = "string",
},
},
SmartIsolationUsers = new Zia.Inputs.BrowserControlSettingsSmartIsolationUsersArgs
{
Ids = new[]
{
0,
},
},
});
example, err := zia.NewBrowserControlSettings(ctx, "browserControlSettingsResource", &zia.BrowserControlSettingsArgs{
AllowAllBrowsers: pulumi.Bool(false),
BlockedChromeVersions: pulumi.StringArray{
pulumi.String("string"),
},
BlockedFirefoxVersions: pulumi.StringArray{
pulumi.String("string"),
},
BlockedInternetExplorerVersions: pulumi.StringArray{
pulumi.String("string"),
},
BlockedOperaVersions: pulumi.StringArray{
pulumi.String("string"),
},
BlockedSafariVersions: pulumi.StringArray{
pulumi.String("string"),
},
BypassAllBrowsers: pulumi.Bool(false),
BypassApplications: pulumi.StringArray{
pulumi.String("string"),
},
BypassPlugins: pulumi.StringArray{
pulumi.String("string"),
},
EnableSmartBrowserIsolation: pulumi.Bool(false),
EnableWarnings: pulumi.Bool(false),
PluginCheckFrequency: pulumi.String("string"),
SmartIsolationGroups: &zia.BrowserControlSettingsSmartIsolationGroupsArgs{
Ids: pulumi.IntArray{
pulumi.Int(0),
},
},
SmartIsolationProfiles: zia.BrowserControlSettingsSmartIsolationProfileArray{
&zia.BrowserControlSettingsSmartIsolationProfileArgs{
Id: pulumi.String("string"),
},
},
SmartIsolationUsers: &zia.BrowserControlSettingsSmartIsolationUsersArgs{
Ids: pulumi.IntArray{
pulumi.Int(0),
},
},
})
var browserControlSettingsResource = new BrowserControlSettings("browserControlSettingsResource", BrowserControlSettingsArgs.builder()
.allowAllBrowsers(false)
.blockedChromeVersions("string")
.blockedFirefoxVersions("string")
.blockedInternetExplorerVersions("string")
.blockedOperaVersions("string")
.blockedSafariVersions("string")
.bypassAllBrowsers(false)
.bypassApplications("string")
.bypassPlugins("string")
.enableSmartBrowserIsolation(false)
.enableWarnings(false)
.pluginCheckFrequency("string")
.smartIsolationGroups(BrowserControlSettingsSmartIsolationGroupsArgs.builder()
.ids(0)
.build())
.smartIsolationProfiles(BrowserControlSettingsSmartIsolationProfileArgs.builder()
.id("string")
.build())
.smartIsolationUsers(BrowserControlSettingsSmartIsolationUsersArgs.builder()
.ids(0)
.build())
.build());
browser_control_settings_resource = zia.BrowserControlSettings("browserControlSettingsResource",
allow_all_browsers=False,
blocked_chrome_versions=["string"],
blocked_firefox_versions=["string"],
blocked_internet_explorer_versions=["string"],
blocked_opera_versions=["string"],
blocked_safari_versions=["string"],
bypass_all_browsers=False,
bypass_applications=["string"],
bypass_plugins=["string"],
enable_smart_browser_isolation=False,
enable_warnings=False,
plugin_check_frequency="string",
smart_isolation_groups={
"ids": [0],
},
smart_isolation_profiles=[{
"id": "string",
}],
smart_isolation_users={
"ids": [0],
})
const browserControlSettingsResource = new zia.BrowserControlSettings("browserControlSettingsResource", {
allowAllBrowsers: false,
blockedChromeVersions: ["string"],
blockedFirefoxVersions: ["string"],
blockedInternetExplorerVersions: ["string"],
blockedOperaVersions: ["string"],
blockedSafariVersions: ["string"],
bypassAllBrowsers: false,
bypassApplications: ["string"],
bypassPlugins: ["string"],
enableSmartBrowserIsolation: false,
enableWarnings: false,
pluginCheckFrequency: "string",
smartIsolationGroups: {
ids: [0],
},
smartIsolationProfiles: [{
id: "string",
}],
smartIsolationUsers: {
ids: [0],
},
});
type: zia:BrowserControlSettings
properties:
allowAllBrowsers: false
blockedChromeVersions:
- string
blockedFirefoxVersions:
- string
blockedInternetExplorerVersions:
- string
blockedOperaVersions:
- string
blockedSafariVersions:
- string
bypassAllBrowsers: false
bypassApplications:
- string
bypassPlugins:
- string
enableSmartBrowserIsolation: false
enableWarnings: false
pluginCheckFrequency: string
smartIsolationGroups:
ids:
- 0
smartIsolationProfiles:
- id: string
smartIsolationUsers:
ids:
- 0
BrowserControlSettings 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 BrowserControlSettings resource accepts the following input properties:
- Allow
All boolBrowsers - A Boolean value that specifies whether or not to allow all the browsers and their respective versions access to the internet
- Blocked
Chrome List<string>Versions - Versions of Google Chrome browser that need to be blocked. If not set, all Google Chrome versions are allowed.
- Blocked
Firefox List<string>Versions - Versions of Mozilla Firefox browser that need to be blocked. If not set, all Mozilla Firefox versions are allowed.
- Blocked
Internet List<string>Explorer Versions - Versions of Microsoft browser that need to be blocked. If not set, all Microsoft browser versions are allowed.
- Blocked
Opera List<string>Versions - Versions of Opera browser that need to be blocked. If not set, all Opera versions are allowed
- Blocked
Safari List<string>Versions - Versions of Apple Safari browser that need to be blocked. If not set, all Apple Safari versions are allowed
- Bypass
All boolBrowsers - If set to true, all the browsers are bypassed for warnings
- Bypass
Applications List<string> - List of applications that need to be bypassed for warnings. This attribute has effect only if the 'enableWarnings' attribute is set to true. If not set, all vulnerable applications are warned
- Bypass
Plugins List<string> - List of plugins that need to be bypassed for warnings. This attribute has effect only if the 'enableWarnings' attribute is set to true. If not set, all vulnerable plugins are warned
- Enable
Smart boolBrowser Isolation - A Boolean value that specifies if Smart Browser Isolation is enabled
- Enable
Warnings bool - A Boolean value that specifies if the warnings are enabled
- Plugin
Check stringFrequency - Specifies how frequently the service checks browsers and relevant applications to warn users regarding outdated or vulnerable browsers, plugins, and applications. If not set, the warnings are disabled
- Smart
Isolation zscaler.Groups Pulumi Package. Zia. Inputs. Browser Control Settings Smart Isolation Groups - Name-ID pairs of groups for which the rule is applied
- Smart
Isolation List<zscaler.Profiles Pulumi Package. Zia. Inputs. Browser Control Settings Smart Isolation Profile> - The isolation profile
- Smart
Isolation zscaler.Users Pulumi Package. Zia. Inputs. Browser Control Settings Smart Isolation Users - Name-ID pairs of users for which the rule is applied
- Allow
All boolBrowsers - A Boolean value that specifies whether or not to allow all the browsers and their respective versions access to the internet
- Blocked
Chrome []stringVersions - Versions of Google Chrome browser that need to be blocked. If not set, all Google Chrome versions are allowed.
- Blocked
Firefox []stringVersions - Versions of Mozilla Firefox browser that need to be blocked. If not set, all Mozilla Firefox versions are allowed.
- Blocked
Internet []stringExplorer Versions - Versions of Microsoft browser that need to be blocked. If not set, all Microsoft browser versions are allowed.
- Blocked
Opera []stringVersions - Versions of Opera browser that need to be blocked. If not set, all Opera versions are allowed
- Blocked
Safari []stringVersions - Versions of Apple Safari browser that need to be blocked. If not set, all Apple Safari versions are allowed
- Bypass
All boolBrowsers - If set to true, all the browsers are bypassed for warnings
- Bypass
Applications []string - List of applications that need to be bypassed for warnings. This attribute has effect only if the 'enableWarnings' attribute is set to true. If not set, all vulnerable applications are warned
- Bypass
Plugins []string - List of plugins that need to be bypassed for warnings. This attribute has effect only if the 'enableWarnings' attribute is set to true. If not set, all vulnerable plugins are warned
- Enable
Smart boolBrowser Isolation - A Boolean value that specifies if Smart Browser Isolation is enabled
- Enable
Warnings bool - A Boolean value that specifies if the warnings are enabled
- Plugin
Check stringFrequency - Specifies how frequently the service checks browsers and relevant applications to warn users regarding outdated or vulnerable browsers, plugins, and applications. If not set, the warnings are disabled
- Smart
Isolation BrowserGroups Control Settings Smart Isolation Groups Args - Name-ID pairs of groups for which the rule is applied
- Smart
Isolation []BrowserProfiles Control Settings Smart Isolation Profile Args - The isolation profile
- Smart
Isolation BrowserUsers Control Settings Smart Isolation Users Args - Name-ID pairs of users for which the rule is applied
- allow
All BooleanBrowsers - A Boolean value that specifies whether or not to allow all the browsers and their respective versions access to the internet
- blocked
Chrome List<String>Versions - Versions of Google Chrome browser that need to be blocked. If not set, all Google Chrome versions are allowed.
- blocked
Firefox List<String>Versions - Versions of Mozilla Firefox browser that need to be blocked. If not set, all Mozilla Firefox versions are allowed.
- blocked
Internet List<String>Explorer Versions - Versions of Microsoft browser that need to be blocked. If not set, all Microsoft browser versions are allowed.
- blocked
Opera List<String>Versions - Versions of Opera browser that need to be blocked. If not set, all Opera versions are allowed
- blocked
Safari List<String>Versions - Versions of Apple Safari browser that need to be blocked. If not set, all Apple Safari versions are allowed
- bypass
All BooleanBrowsers - If set to true, all the browsers are bypassed for warnings
- bypass
Applications List<String> - List of applications that need to be bypassed for warnings. This attribute has effect only if the 'enableWarnings' attribute is set to true. If not set, all vulnerable applications are warned
- bypass
Plugins List<String> - List of plugins that need to be bypassed for warnings. This attribute has effect only if the 'enableWarnings' attribute is set to true. If not set, all vulnerable plugins are warned
- enable
Smart BooleanBrowser Isolation - A Boolean value that specifies if Smart Browser Isolation is enabled
- enable
Warnings Boolean - A Boolean value that specifies if the warnings are enabled
- plugin
Check StringFrequency - Specifies how frequently the service checks browsers and relevant applications to warn users regarding outdated or vulnerable browsers, plugins, and applications. If not set, the warnings are disabled
- smart
Isolation BrowserGroups Control Settings Smart Isolation Groups - Name-ID pairs of groups for which the rule is applied
- smart
Isolation List<BrowserProfiles Control Settings Smart Isolation Profile> - The isolation profile
- smart
Isolation BrowserUsers Control Settings Smart Isolation Users - Name-ID pairs of users for which the rule is applied
- allow
All booleanBrowsers - A Boolean value that specifies whether or not to allow all the browsers and their respective versions access to the internet
- blocked
Chrome string[]Versions - Versions of Google Chrome browser that need to be blocked. If not set, all Google Chrome versions are allowed.
- blocked
Firefox string[]Versions - Versions of Mozilla Firefox browser that need to be blocked. If not set, all Mozilla Firefox versions are allowed.
- blocked
Internet string[]Explorer Versions - Versions of Microsoft browser that need to be blocked. If not set, all Microsoft browser versions are allowed.
- blocked
Opera string[]Versions - Versions of Opera browser that need to be blocked. If not set, all Opera versions are allowed
- blocked
Safari string[]Versions - Versions of Apple Safari browser that need to be blocked. If not set, all Apple Safari versions are allowed
- bypass
All booleanBrowsers - If set to true, all the browsers are bypassed for warnings
- bypass
Applications string[] - List of applications that need to be bypassed for warnings. This attribute has effect only if the 'enableWarnings' attribute is set to true. If not set, all vulnerable applications are warned
- bypass
Plugins string[] - List of plugins that need to be bypassed for warnings. This attribute has effect only if the 'enableWarnings' attribute is set to true. If not set, all vulnerable plugins are warned
- enable
Smart booleanBrowser Isolation - A Boolean value that specifies if Smart Browser Isolation is enabled
- enable
Warnings boolean - A Boolean value that specifies if the warnings are enabled
- plugin
Check stringFrequency - Specifies how frequently the service checks browsers and relevant applications to warn users regarding outdated or vulnerable browsers, plugins, and applications. If not set, the warnings are disabled
- smart
Isolation BrowserGroups Control Settings Smart Isolation Groups - Name-ID pairs of groups for which the rule is applied
- smart
Isolation BrowserProfiles Control Settings Smart Isolation Profile[] - The isolation profile
- smart
Isolation BrowserUsers Control Settings Smart Isolation Users - Name-ID pairs of users for which the rule is applied
- allow_
all_ boolbrowsers - A Boolean value that specifies whether or not to allow all the browsers and their respective versions access to the internet
- blocked_
chrome_ Sequence[str]versions - Versions of Google Chrome browser that need to be blocked. If not set, all Google Chrome versions are allowed.
- blocked_
firefox_ Sequence[str]versions - Versions of Mozilla Firefox browser that need to be blocked. If not set, all Mozilla Firefox versions are allowed.
- blocked_
internet_ Sequence[str]explorer_ versions - Versions of Microsoft browser that need to be blocked. If not set, all Microsoft browser versions are allowed.
- blocked_
opera_ Sequence[str]versions - Versions of Opera browser that need to be blocked. If not set, all Opera versions are allowed
- blocked_
safari_ Sequence[str]versions - Versions of Apple Safari browser that need to be blocked. If not set, all Apple Safari versions are allowed
- bypass_
all_ boolbrowsers - If set to true, all the browsers are bypassed for warnings
- bypass_
applications Sequence[str] - List of applications that need to be bypassed for warnings. This attribute has effect only if the 'enableWarnings' attribute is set to true. If not set, all vulnerable applications are warned
- bypass_
plugins Sequence[str] - List of plugins that need to be bypassed for warnings. This attribute has effect only if the 'enableWarnings' attribute is set to true. If not set, all vulnerable plugins are warned
- enable_
smart_ boolbrowser_ isolation - A Boolean value that specifies if Smart Browser Isolation is enabled
- enable_
warnings bool - A Boolean value that specifies if the warnings are enabled
- plugin_
check_ strfrequency - Specifies how frequently the service checks browsers and relevant applications to warn users regarding outdated or vulnerable browsers, plugins, and applications. If not set, the warnings are disabled
- smart_
isolation_ Browsergroups Control Settings Smart Isolation Groups Args - Name-ID pairs of groups for which the rule is applied
- smart_
isolation_ Sequence[Browserprofiles Control Settings Smart Isolation Profile Args] - The isolation profile
- smart_
isolation_ Browserusers Control Settings Smart Isolation Users Args - Name-ID pairs of users for which the rule is applied
- allow
All BooleanBrowsers - A Boolean value that specifies whether or not to allow all the browsers and their respective versions access to the internet
- blocked
Chrome List<String>Versions - Versions of Google Chrome browser that need to be blocked. If not set, all Google Chrome versions are allowed.
- blocked
Firefox List<String>Versions - Versions of Mozilla Firefox browser that need to be blocked. If not set, all Mozilla Firefox versions are allowed.
- blocked
Internet List<String>Explorer Versions - Versions of Microsoft browser that need to be blocked. If not set, all Microsoft browser versions are allowed.
- blocked
Opera List<String>Versions - Versions of Opera browser that need to be blocked. If not set, all Opera versions are allowed
- blocked
Safari List<String>Versions - Versions of Apple Safari browser that need to be blocked. If not set, all Apple Safari versions are allowed
- bypass
All BooleanBrowsers - If set to true, all the browsers are bypassed for warnings
- bypass
Applications List<String> - List of applications that need to be bypassed for warnings. This attribute has effect only if the 'enableWarnings' attribute is set to true. If not set, all vulnerable applications are warned
- bypass
Plugins List<String> - List of plugins that need to be bypassed for warnings. This attribute has effect only if the 'enableWarnings' attribute is set to true. If not set, all vulnerable plugins are warned
- enable
Smart BooleanBrowser Isolation - A Boolean value that specifies if Smart Browser Isolation is enabled
- enable
Warnings Boolean - A Boolean value that specifies if the warnings are enabled
- plugin
Check StringFrequency - Specifies how frequently the service checks browsers and relevant applications to warn users regarding outdated or vulnerable browsers, plugins, and applications. If not set, the warnings are disabled
- smart
Isolation Property MapGroups - Name-ID pairs of groups for which the rule is applied
- smart
Isolation List<Property Map>Profiles - The isolation profile
- smart
Isolation Property MapUsers - Name-ID pairs of users for which the rule is applied
Outputs
All input properties are implicitly available as output properties. Additionally, the BrowserControlSettings resource produces the following output properties:
- Id string
- The provider-assigned unique ID for this managed resource.
- Id string
- The provider-assigned unique ID for this managed resource.
- id String
- The provider-assigned unique ID for this managed resource.
- id string
- The provider-assigned unique ID for this managed resource.
- id str
- The provider-assigned unique ID for this managed resource.
- id String
- The provider-assigned unique ID for this managed resource.
Look up Existing BrowserControlSettings Resource
Get an existing BrowserControlSettings 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?: BrowserControlSettingsState, opts?: CustomResourceOptions): BrowserControlSettings
@staticmethod
def get(resource_name: str,
id: str,
opts: Optional[ResourceOptions] = None,
allow_all_browsers: Optional[bool] = None,
blocked_chrome_versions: Optional[Sequence[str]] = None,
blocked_firefox_versions: Optional[Sequence[str]] = None,
blocked_internet_explorer_versions: Optional[Sequence[str]] = None,
blocked_opera_versions: Optional[Sequence[str]] = None,
blocked_safari_versions: Optional[Sequence[str]] = None,
bypass_all_browsers: Optional[bool] = None,
bypass_applications: Optional[Sequence[str]] = None,
bypass_plugins: Optional[Sequence[str]] = None,
enable_smart_browser_isolation: Optional[bool] = None,
enable_warnings: Optional[bool] = None,
plugin_check_frequency: Optional[str] = None,
smart_isolation_groups: Optional[BrowserControlSettingsSmartIsolationGroupsArgs] = None,
smart_isolation_profiles: Optional[Sequence[BrowserControlSettingsSmartIsolationProfileArgs]] = None,
smart_isolation_users: Optional[BrowserControlSettingsSmartIsolationUsersArgs] = None) -> BrowserControlSettings
func GetBrowserControlSettings(ctx *Context, name string, id IDInput, state *BrowserControlSettingsState, opts ...ResourceOption) (*BrowserControlSettings, error)
public static BrowserControlSettings Get(string name, Input<string> id, BrowserControlSettingsState? state, CustomResourceOptions? opts = null)
public static BrowserControlSettings get(String name, Output<String> id, BrowserControlSettingsState state, CustomResourceOptions options)
resources: _: type: zia:BrowserControlSettings 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.
- Allow
All boolBrowsers - A Boolean value that specifies whether or not to allow all the browsers and their respective versions access to the internet
- Blocked
Chrome List<string>Versions - Versions of Google Chrome browser that need to be blocked. If not set, all Google Chrome versions are allowed.
- Blocked
Firefox List<string>Versions - Versions of Mozilla Firefox browser that need to be blocked. If not set, all Mozilla Firefox versions are allowed.
- Blocked
Internet List<string>Explorer Versions - Versions of Microsoft browser that need to be blocked. If not set, all Microsoft browser versions are allowed.
- Blocked
Opera List<string>Versions - Versions of Opera browser that need to be blocked. If not set, all Opera versions are allowed
- Blocked
Safari List<string>Versions - Versions of Apple Safari browser that need to be blocked. If not set, all Apple Safari versions are allowed
- Bypass
All boolBrowsers - If set to true, all the browsers are bypassed for warnings
- Bypass
Applications List<string> - List of applications that need to be bypassed for warnings. This attribute has effect only if the 'enableWarnings' attribute is set to true. If not set, all vulnerable applications are warned
- Bypass
Plugins List<string> - List of plugins that need to be bypassed for warnings. This attribute has effect only if the 'enableWarnings' attribute is set to true. If not set, all vulnerable plugins are warned
- Enable
Smart boolBrowser Isolation - A Boolean value that specifies if Smart Browser Isolation is enabled
- Enable
Warnings bool - A Boolean value that specifies if the warnings are enabled
- Plugin
Check stringFrequency - Specifies how frequently the service checks browsers and relevant applications to warn users regarding outdated or vulnerable browsers, plugins, and applications. If not set, the warnings are disabled
- Smart
Isolation zscaler.Groups Pulumi Package. Zia. Inputs. Browser Control Settings Smart Isolation Groups - Name-ID pairs of groups for which the rule is applied
- Smart
Isolation List<zscaler.Profiles Pulumi Package. Zia. Inputs. Browser Control Settings Smart Isolation Profile> - The isolation profile
- Smart
Isolation zscaler.Users Pulumi Package. Zia. Inputs. Browser Control Settings Smart Isolation Users - Name-ID pairs of users for which the rule is applied
- Allow
All boolBrowsers - A Boolean value that specifies whether or not to allow all the browsers and their respective versions access to the internet
- Blocked
Chrome []stringVersions - Versions of Google Chrome browser that need to be blocked. If not set, all Google Chrome versions are allowed.
- Blocked
Firefox []stringVersions - Versions of Mozilla Firefox browser that need to be blocked. If not set, all Mozilla Firefox versions are allowed.
- Blocked
Internet []stringExplorer Versions - Versions of Microsoft browser that need to be blocked. If not set, all Microsoft browser versions are allowed.
- Blocked
Opera []stringVersions - Versions of Opera browser that need to be blocked. If not set, all Opera versions are allowed
- Blocked
Safari []stringVersions - Versions of Apple Safari browser that need to be blocked. If not set, all Apple Safari versions are allowed
- Bypass
All boolBrowsers - If set to true, all the browsers are bypassed for warnings
- Bypass
Applications []string - List of applications that need to be bypassed for warnings. This attribute has effect only if the 'enableWarnings' attribute is set to true. If not set, all vulnerable applications are warned
- Bypass
Plugins []string - List of plugins that need to be bypassed for warnings. This attribute has effect only if the 'enableWarnings' attribute is set to true. If not set, all vulnerable plugins are warned
- Enable
Smart boolBrowser Isolation - A Boolean value that specifies if Smart Browser Isolation is enabled
- Enable
Warnings bool - A Boolean value that specifies if the warnings are enabled
- Plugin
Check stringFrequency - Specifies how frequently the service checks browsers and relevant applications to warn users regarding outdated or vulnerable browsers, plugins, and applications. If not set, the warnings are disabled
- Smart
Isolation BrowserGroups Control Settings Smart Isolation Groups Args - Name-ID pairs of groups for which the rule is applied
- Smart
Isolation []BrowserProfiles Control Settings Smart Isolation Profile Args - The isolation profile
- Smart
Isolation BrowserUsers Control Settings Smart Isolation Users Args - Name-ID pairs of users for which the rule is applied
- allow
All BooleanBrowsers - A Boolean value that specifies whether or not to allow all the browsers and their respective versions access to the internet
- blocked
Chrome List<String>Versions - Versions of Google Chrome browser that need to be blocked. If not set, all Google Chrome versions are allowed.
- blocked
Firefox List<String>Versions - Versions of Mozilla Firefox browser that need to be blocked. If not set, all Mozilla Firefox versions are allowed.
- blocked
Internet List<String>Explorer Versions - Versions of Microsoft browser that need to be blocked. If not set, all Microsoft browser versions are allowed.
- blocked
Opera List<String>Versions - Versions of Opera browser that need to be blocked. If not set, all Opera versions are allowed
- blocked
Safari List<String>Versions - Versions of Apple Safari browser that need to be blocked. If not set, all Apple Safari versions are allowed
- bypass
All BooleanBrowsers - If set to true, all the browsers are bypassed for warnings
- bypass
Applications List<String> - List of applications that need to be bypassed for warnings. This attribute has effect only if the 'enableWarnings' attribute is set to true. If not set, all vulnerable applications are warned
- bypass
Plugins List<String> - List of plugins that need to be bypassed for warnings. This attribute has effect only if the 'enableWarnings' attribute is set to true. If not set, all vulnerable plugins are warned
- enable
Smart BooleanBrowser Isolation - A Boolean value that specifies if Smart Browser Isolation is enabled
- enable
Warnings Boolean - A Boolean value that specifies if the warnings are enabled
- plugin
Check StringFrequency - Specifies how frequently the service checks browsers and relevant applications to warn users regarding outdated or vulnerable browsers, plugins, and applications. If not set, the warnings are disabled
- smart
Isolation BrowserGroups Control Settings Smart Isolation Groups - Name-ID pairs of groups for which the rule is applied
- smart
Isolation List<BrowserProfiles Control Settings Smart Isolation Profile> - The isolation profile
- smart
Isolation BrowserUsers Control Settings Smart Isolation Users - Name-ID pairs of users for which the rule is applied
- allow
All booleanBrowsers - A Boolean value that specifies whether or not to allow all the browsers and their respective versions access to the internet
- blocked
Chrome string[]Versions - Versions of Google Chrome browser that need to be blocked. If not set, all Google Chrome versions are allowed.
- blocked
Firefox string[]Versions - Versions of Mozilla Firefox browser that need to be blocked. If not set, all Mozilla Firefox versions are allowed.
- blocked
Internet string[]Explorer Versions - Versions of Microsoft browser that need to be blocked. If not set, all Microsoft browser versions are allowed.
- blocked
Opera string[]Versions - Versions of Opera browser that need to be blocked. If not set, all Opera versions are allowed
- blocked
Safari string[]Versions - Versions of Apple Safari browser that need to be blocked. If not set, all Apple Safari versions are allowed
- bypass
All booleanBrowsers - If set to true, all the browsers are bypassed for warnings
- bypass
Applications string[] - List of applications that need to be bypassed for warnings. This attribute has effect only if the 'enableWarnings' attribute is set to true. If not set, all vulnerable applications are warned
- bypass
Plugins string[] - List of plugins that need to be bypassed for warnings. This attribute has effect only if the 'enableWarnings' attribute is set to true. If not set, all vulnerable plugins are warned
- enable
Smart booleanBrowser Isolation - A Boolean value that specifies if Smart Browser Isolation is enabled
- enable
Warnings boolean - A Boolean value that specifies if the warnings are enabled
- plugin
Check stringFrequency - Specifies how frequently the service checks browsers and relevant applications to warn users regarding outdated or vulnerable browsers, plugins, and applications. If not set, the warnings are disabled
- smart
Isolation BrowserGroups Control Settings Smart Isolation Groups - Name-ID pairs of groups for which the rule is applied
- smart
Isolation BrowserProfiles Control Settings Smart Isolation Profile[] - The isolation profile
- smart
Isolation BrowserUsers Control Settings Smart Isolation Users - Name-ID pairs of users for which the rule is applied
- allow_
all_ boolbrowsers - A Boolean value that specifies whether or not to allow all the browsers and their respective versions access to the internet
- blocked_
chrome_ Sequence[str]versions - Versions of Google Chrome browser that need to be blocked. If not set, all Google Chrome versions are allowed.
- blocked_
firefox_ Sequence[str]versions - Versions of Mozilla Firefox browser that need to be blocked. If not set, all Mozilla Firefox versions are allowed.
- blocked_
internet_ Sequence[str]explorer_ versions - Versions of Microsoft browser that need to be blocked. If not set, all Microsoft browser versions are allowed.
- blocked_
opera_ Sequence[str]versions - Versions of Opera browser that need to be blocked. If not set, all Opera versions are allowed
- blocked_
safari_ Sequence[str]versions - Versions of Apple Safari browser that need to be blocked. If not set, all Apple Safari versions are allowed
- bypass_
all_ boolbrowsers - If set to true, all the browsers are bypassed for warnings
- bypass_
applications Sequence[str] - List of applications that need to be bypassed for warnings. This attribute has effect only if the 'enableWarnings' attribute is set to true. If not set, all vulnerable applications are warned
- bypass_
plugins Sequence[str] - List of plugins that need to be bypassed for warnings. This attribute has effect only if the 'enableWarnings' attribute is set to true. If not set, all vulnerable plugins are warned
- enable_
smart_ boolbrowser_ isolation - A Boolean value that specifies if Smart Browser Isolation is enabled
- enable_
warnings bool - A Boolean value that specifies if the warnings are enabled
- plugin_
check_ strfrequency - Specifies how frequently the service checks browsers and relevant applications to warn users regarding outdated or vulnerable browsers, plugins, and applications. If not set, the warnings are disabled
- smart_
isolation_ Browsergroups Control Settings Smart Isolation Groups Args - Name-ID pairs of groups for which the rule is applied
- smart_
isolation_ Sequence[Browserprofiles Control Settings Smart Isolation Profile Args] - The isolation profile
- smart_
isolation_ Browserusers Control Settings Smart Isolation Users Args - Name-ID pairs of users for which the rule is applied
- allow
All BooleanBrowsers - A Boolean value that specifies whether or not to allow all the browsers and their respective versions access to the internet
- blocked
Chrome List<String>Versions - Versions of Google Chrome browser that need to be blocked. If not set, all Google Chrome versions are allowed.
- blocked
Firefox List<String>Versions - Versions of Mozilla Firefox browser that need to be blocked. If not set, all Mozilla Firefox versions are allowed.
- blocked
Internet List<String>Explorer Versions - Versions of Microsoft browser that need to be blocked. If not set, all Microsoft browser versions are allowed.
- blocked
Opera List<String>Versions - Versions of Opera browser that need to be blocked. If not set, all Opera versions are allowed
- blocked
Safari List<String>Versions - Versions of Apple Safari browser that need to be blocked. If not set, all Apple Safari versions are allowed
- bypass
All BooleanBrowsers - If set to true, all the browsers are bypassed for warnings
- bypass
Applications List<String> - List of applications that need to be bypassed for warnings. This attribute has effect only if the 'enableWarnings' attribute is set to true. If not set, all vulnerable applications are warned
- bypass
Plugins List<String> - List of plugins that need to be bypassed for warnings. This attribute has effect only if the 'enableWarnings' attribute is set to true. If not set, all vulnerable plugins are warned
- enable
Smart BooleanBrowser Isolation - A Boolean value that specifies if Smart Browser Isolation is enabled
- enable
Warnings Boolean - A Boolean value that specifies if the warnings are enabled
- plugin
Check StringFrequency - Specifies how frequently the service checks browsers and relevant applications to warn users regarding outdated or vulnerable browsers, plugins, and applications. If not set, the warnings are disabled
- smart
Isolation Property MapGroups - Name-ID pairs of groups for which the rule is applied
- smart
Isolation List<Property Map>Profiles - The isolation profile
- smart
Isolation Property MapUsers - Name-ID pairs of users for which the rule is applied
Supporting Types
BrowserControlSettingsSmartIsolationGroups, BrowserControlSettingsSmartIsolationGroupsArgs
- Ids List<int>
- A unique identifier for an entity.
- Ids []int
- A unique identifier for an entity.
- ids List<Integer>
- A unique identifier for an entity.
- ids number[]
- A unique identifier for an entity.
- ids Sequence[int]
- A unique identifier for an entity.
- ids List<Number>
- A unique identifier for an entity.
BrowserControlSettingsSmartIsolationProfile, BrowserControlSettingsSmartIsolationProfileArgs
- Id string
- The universally unique identifier (UUID) for the browser isolation profile
- Id string
- The universally unique identifier (UUID) for the browser isolation profile
- id String
- The universally unique identifier (UUID) for the browser isolation profile
- id string
- The universally unique identifier (UUID) for the browser isolation profile
- id str
- The universally unique identifier (UUID) for the browser isolation profile
- id String
- The universally unique identifier (UUID) for the browser isolation profile
BrowserControlSettingsSmartIsolationUsers, BrowserControlSettingsSmartIsolationUsersArgs
- Ids List<int>
- A unique identifier for an entity.
- Ids []int
- A unique identifier for an entity.
- ids List<Integer>
- A unique identifier for an entity.
- ids number[]
- A unique identifier for an entity.
- ids Sequence[int]
- A unique identifier for an entity.
- ids List<Number>
- A unique identifier for an entity.
Import
Zscaler offers a dedicated tool called Zscaler-Terraformer to allow the automated import of ZIA configurations into Terraform-compliant HashiCorp Configuration Language.
Visit
zia_browser_control_policy can be imported by using browser_settings
as the import ID.
For example:
$ pulumi import zia:index/browserControlSettings:BrowserControlSettings this "browser_settings"
To learn more about importing existing cloud resources, see Importing resources.
Package Details
- Repository
- zia zscaler/pulumi-zia
- License
- MIT
- Notes
- This Pulumi package is based on the
zia
Terraform Provider.