fortimanager.ObjectWebfilterProfileWeb
Explore with Pulumi AI
Web content filtering settings.
This resource is a sub resource for variable
web
of resourcefortimanager.ObjectWebfilterProfile
. Conflict and overwrite may occur if use both of them.
Example Usage
import * as pulumi from "@pulumi/pulumi";
import * as fortimanager from "@pulumi/fortimanager";
const trname8 = new fortimanager.ObjectWebfilterProfile("trname8", {});
const trname = new fortimanager.ObjectWebfilterProfileWeb("trname", {
safeSearches: ["url"],
youtubeRestrict: "strict",
profile: trname8.name,
}, {
dependsOn: [trname8],
});
import pulumi
import pulumi_fortimanager as fortimanager
trname8 = fortimanager.ObjectWebfilterProfile("trname8")
trname = fortimanager.ObjectWebfilterProfileWeb("trname",
safe_searches=["url"],
youtube_restrict="strict",
profile=trname8.name,
opts = pulumi.ResourceOptions(depends_on=[trname8]))
package main
import (
"github.com/pulumi/pulumi-terraform-provider/sdks/go/fortimanager/fortimanager"
"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
)
func main() {
pulumi.Run(func(ctx *pulumi.Context) error {
trname8, err := fortimanager.NewObjectWebfilterProfile(ctx, "trname8", nil)
if err != nil {
return err
}
_, err = fortimanager.NewObjectWebfilterProfileWeb(ctx, "trname", &fortimanager.ObjectWebfilterProfileWebArgs{
SafeSearches: pulumi.StringArray{
pulumi.String("url"),
},
YoutubeRestrict: pulumi.String("strict"),
Profile: trname8.Name,
}, pulumi.DependsOn([]pulumi.Resource{
trname8,
}))
if err != nil {
return err
}
return nil
})
}
using System.Collections.Generic;
using System.Linq;
using Pulumi;
using Fortimanager = Pulumi.Fortimanager;
return await Deployment.RunAsync(() =>
{
var trname8 = new Fortimanager.ObjectWebfilterProfile("trname8");
var trname = new Fortimanager.ObjectWebfilterProfileWeb("trname", new()
{
SafeSearches = new[]
{
"url",
},
YoutubeRestrict = "strict",
Profile = trname8.Name,
}, new CustomResourceOptions
{
DependsOn =
{
trname8,
},
});
});
package generated_program;
import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.fortimanager.ObjectWebfilterProfile;
import com.pulumi.fortimanager.ObjectWebfilterProfileWeb;
import com.pulumi.fortimanager.ObjectWebfilterProfileWebArgs;
import com.pulumi.resources.CustomResourceOptions;
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 trname8 = new ObjectWebfilterProfile("trname8");
var trname = new ObjectWebfilterProfileWeb("trname", ObjectWebfilterProfileWebArgs.builder()
.safeSearches("url")
.youtubeRestrict("strict")
.profile(trname8.name())
.build(), CustomResourceOptions.builder()
.dependsOn(trname8)
.build());
}
}
resources:
trname:
type: fortimanager:ObjectWebfilterProfileWeb
properties:
safeSearches:
- url
youtubeRestrict: strict
profile: ${trname8.name}
options:
dependsOn:
- ${trname8}
trname8:
type: fortimanager:ObjectWebfilterProfile
Create ObjectWebfilterProfileWeb Resource
Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.
Constructor syntax
new ObjectWebfilterProfileWeb(name: string, args: ObjectWebfilterProfileWebArgs, opts?: CustomResourceOptions);
@overload
def ObjectWebfilterProfileWeb(resource_name: str,
args: ObjectWebfilterProfileWebInitArgs,
opts: Optional[ResourceOptions] = None)
@overload
def ObjectWebfilterProfileWeb(resource_name: str,
opts: Optional[ResourceOptions] = None,
profile: Optional[str] = None,
log_search: Optional[str] = None,
keyword_matches: Optional[Sequence[str]] = None,
blocklist: Optional[str] = None,
bword_table: Optional[str] = None,
object_webfilter_profile_web_id: Optional[str] = None,
content_header_list: Optional[str] = None,
blacklist: Optional[str] = None,
adom: Optional[str] = None,
bword_threshold: Optional[float] = None,
allowlists: Optional[Sequence[str]] = None,
safe_searches: Optional[Sequence[str]] = None,
scopetype: Optional[str] = None,
urlfilter_table: Optional[str] = None,
vimeo_restrict: Optional[str] = None,
whitelists: Optional[Sequence[str]] = None,
youtube_restrict: Optional[str] = None)
func NewObjectWebfilterProfileWeb(ctx *Context, name string, args ObjectWebfilterProfileWebArgs, opts ...ResourceOption) (*ObjectWebfilterProfileWeb, error)
public ObjectWebfilterProfileWeb(string name, ObjectWebfilterProfileWebArgs args, CustomResourceOptions? opts = null)
public ObjectWebfilterProfileWeb(String name, ObjectWebfilterProfileWebArgs args)
public ObjectWebfilterProfileWeb(String name, ObjectWebfilterProfileWebArgs args, CustomResourceOptions options)
type: fortimanager:ObjectWebfilterProfileWeb
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 ObjectWebfilterProfileWebArgs
- 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 ObjectWebfilterProfileWebInitArgs
- 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 ObjectWebfilterProfileWebArgs
- The arguments to resource properties.
- opts ResourceOption
- Bag of options to control resource's behavior.
- name string
- The unique name of the resource.
- args ObjectWebfilterProfileWebArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- name String
- The unique name of the resource.
- args ObjectWebfilterProfileWebArgs
- 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 objectWebfilterProfileWebResource = new Fortimanager.ObjectWebfilterProfileWeb("objectWebfilterProfileWebResource", new()
{
Profile = "string",
LogSearch = "string",
KeywordMatches = new[]
{
"string",
},
Blocklist = "string",
BwordTable = "string",
ObjectWebfilterProfileWebId = "string",
ContentHeaderList = "string",
Blacklist = "string",
Adom = "string",
BwordThreshold = 0,
Allowlists = new[]
{
"string",
},
SafeSearches = new[]
{
"string",
},
Scopetype = "string",
UrlfilterTable = "string",
VimeoRestrict = "string",
Whitelists = new[]
{
"string",
},
YoutubeRestrict = "string",
});
example, err := fortimanager.NewObjectWebfilterProfileWeb(ctx, "objectWebfilterProfileWebResource", &fortimanager.ObjectWebfilterProfileWebArgs{
Profile: pulumi.String("string"),
LogSearch: pulumi.String("string"),
KeywordMatches: pulumi.StringArray{
pulumi.String("string"),
},
Blocklist: pulumi.String("string"),
BwordTable: pulumi.String("string"),
ObjectWebfilterProfileWebId: pulumi.String("string"),
ContentHeaderList: pulumi.String("string"),
Blacklist: pulumi.String("string"),
Adom: pulumi.String("string"),
BwordThreshold: pulumi.Float64(0),
Allowlists: pulumi.StringArray{
pulumi.String("string"),
},
SafeSearches: pulumi.StringArray{
pulumi.String("string"),
},
Scopetype: pulumi.String("string"),
UrlfilterTable: pulumi.String("string"),
VimeoRestrict: pulumi.String("string"),
Whitelists: pulumi.StringArray{
pulumi.String("string"),
},
YoutubeRestrict: pulumi.String("string"),
})
var objectWebfilterProfileWebResource = new ObjectWebfilterProfileWeb("objectWebfilterProfileWebResource", ObjectWebfilterProfileWebArgs.builder()
.profile("string")
.logSearch("string")
.keywordMatches("string")
.blocklist("string")
.bwordTable("string")
.objectWebfilterProfileWebId("string")
.contentHeaderList("string")
.blacklist("string")
.adom("string")
.bwordThreshold(0)
.allowlists("string")
.safeSearches("string")
.scopetype("string")
.urlfilterTable("string")
.vimeoRestrict("string")
.whitelists("string")
.youtubeRestrict("string")
.build());
object_webfilter_profile_web_resource = fortimanager.ObjectWebfilterProfileWeb("objectWebfilterProfileWebResource",
profile="string",
log_search="string",
keyword_matches=["string"],
blocklist="string",
bword_table="string",
object_webfilter_profile_web_id="string",
content_header_list="string",
blacklist="string",
adom="string",
bword_threshold=0,
allowlists=["string"],
safe_searches=["string"],
scopetype="string",
urlfilter_table="string",
vimeo_restrict="string",
whitelists=["string"],
youtube_restrict="string")
const objectWebfilterProfileWebResource = new fortimanager.ObjectWebfilterProfileWeb("objectWebfilterProfileWebResource", {
profile: "string",
logSearch: "string",
keywordMatches: ["string"],
blocklist: "string",
bwordTable: "string",
objectWebfilterProfileWebId: "string",
contentHeaderList: "string",
blacklist: "string",
adom: "string",
bwordThreshold: 0,
allowlists: ["string"],
safeSearches: ["string"],
scopetype: "string",
urlfilterTable: "string",
vimeoRestrict: "string",
whitelists: ["string"],
youtubeRestrict: "string",
});
type: fortimanager:ObjectWebfilterProfileWeb
properties:
adom: string
allowlists:
- string
blacklist: string
blocklist: string
bwordTable: string
bwordThreshold: 0
contentHeaderList: string
keywordMatches:
- string
logSearch: string
objectWebfilterProfileWebId: string
profile: string
safeSearches:
- string
scopetype: string
urlfilterTable: string
vimeoRestrict: string
whitelists:
- string
youtubeRestrict: string
ObjectWebfilterProfileWeb 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 ObjectWebfilterProfileWeb resource accepts the following input properties:
- Profile string
- Profile.
- Adom string
- Adom. This value is valid only when the
scopetype
isadom
, otherwise the value of adom in the provider will be inherited. - Allowlists List<string>
- FortiGuard allowlist settings. Valid values:
exempt-av
,exempt-webcontent
,exempt-activex-java-cookie
,exempt-dlp
,exempt-rangeblock
,extended-log-others
. - Blacklist string
- Enable/disable automatic addition of URLs detected by FortiSandbox to blacklist. Valid values:
disable
,enable
. - Blocklist string
- Enable/disable automatic addition of URLs detected by FortiSandbox to blocklist. Valid values:
disable
,enable
. - Bword
Table string - Banned word table ID.
- Bword
Threshold double - Banned word score threshold.
- Content
Header stringList - Content header list.
- Keyword
Matches List<string> - Search keywords to log when match is found.
- Log
Search string - Enable/disable logging all search phrases. Valid values:
disable
,enable
. - Object
Webfilter stringProfile Web Id - an identifier for the resource.
- Safe
Searches List<string> - Safe search type. Valid values:
google
,yahoo
,bing
,url
,header
. - Scopetype string
- The scope of application of the resource. Valid values:
inherit
,adom
,global
. Theinherit
means that the scopetype of the provider will be inherited, and adom will also be inherited. The default value isinherit
. - Urlfilter
Table string - URL filter table ID.
- Vimeo
Restrict string - Set Vimeo-restrict ("7" = don't show mature content, "134" = don't show unrated and mature content). A value of cookie "content_rating".
- Whitelists List<string>
- FortiGuard whitelist settings. Valid values:
exempt-av
,exempt-webcontent
,exempt-activex-java-cookie
,exempt-dlp
,exempt-rangeblock
,extended-log-others
. - Youtube
Restrict string - YouTube EDU filter level. Valid values:
strict
,none
,moderate
.
- Profile string
- Profile.
- Adom string
- Adom. This value is valid only when the
scopetype
isadom
, otherwise the value of adom in the provider will be inherited. - Allowlists []string
- FortiGuard allowlist settings. Valid values:
exempt-av
,exempt-webcontent
,exempt-activex-java-cookie
,exempt-dlp
,exempt-rangeblock
,extended-log-others
. - Blacklist string
- Enable/disable automatic addition of URLs detected by FortiSandbox to blacklist. Valid values:
disable
,enable
. - Blocklist string
- Enable/disable automatic addition of URLs detected by FortiSandbox to blocklist. Valid values:
disable
,enable
. - Bword
Table string - Banned word table ID.
- Bword
Threshold float64 - Banned word score threshold.
- Content
Header stringList - Content header list.
- Keyword
Matches []string - Search keywords to log when match is found.
- Log
Search string - Enable/disable logging all search phrases. Valid values:
disable
,enable
. - Object
Webfilter stringProfile Web Id - an identifier for the resource.
- Safe
Searches []string - Safe search type. Valid values:
google
,yahoo
,bing
,url
,header
. - Scopetype string
- The scope of application of the resource. Valid values:
inherit
,adom
,global
. Theinherit
means that the scopetype of the provider will be inherited, and adom will also be inherited. The default value isinherit
. - Urlfilter
Table string - URL filter table ID.
- Vimeo
Restrict string - Set Vimeo-restrict ("7" = don't show mature content, "134" = don't show unrated and mature content). A value of cookie "content_rating".
- Whitelists []string
- FortiGuard whitelist settings. Valid values:
exempt-av
,exempt-webcontent
,exempt-activex-java-cookie
,exempt-dlp
,exempt-rangeblock
,extended-log-others
. - Youtube
Restrict string - YouTube EDU filter level. Valid values:
strict
,none
,moderate
.
- profile String
- Profile.
- adom String
- Adom. This value is valid only when the
scopetype
isadom
, otherwise the value of adom in the provider will be inherited. - allowlists List<String>
- FortiGuard allowlist settings. Valid values:
exempt-av
,exempt-webcontent
,exempt-activex-java-cookie
,exempt-dlp
,exempt-rangeblock
,extended-log-others
. - blacklist String
- Enable/disable automatic addition of URLs detected by FortiSandbox to blacklist. Valid values:
disable
,enable
. - blocklist String
- Enable/disable automatic addition of URLs detected by FortiSandbox to blocklist. Valid values:
disable
,enable
. - bword
Table String - Banned word table ID.
- bword
Threshold Double - Banned word score threshold.
- content
Header StringList - Content header list.
- keyword
Matches List<String> - Search keywords to log when match is found.
- log
Search String - Enable/disable logging all search phrases. Valid values:
disable
,enable
. - object
Webfilter StringProfile Web Id - an identifier for the resource.
- safe
Searches List<String> - Safe search type. Valid values:
google
,yahoo
,bing
,url
,header
. - scopetype String
- The scope of application of the resource. Valid values:
inherit
,adom
,global
. Theinherit
means that the scopetype of the provider will be inherited, and adom will also be inherited. The default value isinherit
. - urlfilter
Table String - URL filter table ID.
- vimeo
Restrict String - Set Vimeo-restrict ("7" = don't show mature content, "134" = don't show unrated and mature content). A value of cookie "content_rating".
- whitelists List<String>
- FortiGuard whitelist settings. Valid values:
exempt-av
,exempt-webcontent
,exempt-activex-java-cookie
,exempt-dlp
,exempt-rangeblock
,extended-log-others
. - youtube
Restrict String - YouTube EDU filter level. Valid values:
strict
,none
,moderate
.
- profile string
- Profile.
- adom string
- Adom. This value is valid only when the
scopetype
isadom
, otherwise the value of adom in the provider will be inherited. - allowlists string[]
- FortiGuard allowlist settings. Valid values:
exempt-av
,exempt-webcontent
,exempt-activex-java-cookie
,exempt-dlp
,exempt-rangeblock
,extended-log-others
. - blacklist string
- Enable/disable automatic addition of URLs detected by FortiSandbox to blacklist. Valid values:
disable
,enable
. - blocklist string
- Enable/disable automatic addition of URLs detected by FortiSandbox to blocklist. Valid values:
disable
,enable
. - bword
Table string - Banned word table ID.
- bword
Threshold number - Banned word score threshold.
- content
Header stringList - Content header list.
- keyword
Matches string[] - Search keywords to log when match is found.
- log
Search string - Enable/disable logging all search phrases. Valid values:
disable
,enable
. - object
Webfilter stringProfile Web Id - an identifier for the resource.
- safe
Searches string[] - Safe search type. Valid values:
google
,yahoo
,bing
,url
,header
. - scopetype string
- The scope of application of the resource. Valid values:
inherit
,adom
,global
. Theinherit
means that the scopetype of the provider will be inherited, and adom will also be inherited. The default value isinherit
. - urlfilter
Table string - URL filter table ID.
- vimeo
Restrict string - Set Vimeo-restrict ("7" = don't show mature content, "134" = don't show unrated and mature content). A value of cookie "content_rating".
- whitelists string[]
- FortiGuard whitelist settings. Valid values:
exempt-av
,exempt-webcontent
,exempt-activex-java-cookie
,exempt-dlp
,exempt-rangeblock
,extended-log-others
. - youtube
Restrict string - YouTube EDU filter level. Valid values:
strict
,none
,moderate
.
- profile str
- Profile.
- adom str
- Adom. This value is valid only when the
scopetype
isadom
, otherwise the value of adom in the provider will be inherited. - allowlists Sequence[str]
- FortiGuard allowlist settings. Valid values:
exempt-av
,exempt-webcontent
,exempt-activex-java-cookie
,exempt-dlp
,exempt-rangeblock
,extended-log-others
. - blacklist str
- Enable/disable automatic addition of URLs detected by FortiSandbox to blacklist. Valid values:
disable
,enable
. - blocklist str
- Enable/disable automatic addition of URLs detected by FortiSandbox to blocklist. Valid values:
disable
,enable
. - bword_
table str - Banned word table ID.
- bword_
threshold float - Banned word score threshold.
- content_
header_ strlist - Content header list.
- keyword_
matches Sequence[str] - Search keywords to log when match is found.
- log_
search str - Enable/disable logging all search phrases. Valid values:
disable
,enable
. - object_
webfilter_ strprofile_ web_ id - an identifier for the resource.
- safe_
searches Sequence[str] - Safe search type. Valid values:
google
,yahoo
,bing
,url
,header
. - scopetype str
- The scope of application of the resource. Valid values:
inherit
,adom
,global
. Theinherit
means that the scopetype of the provider will be inherited, and adom will also be inherited. The default value isinherit
. - urlfilter_
table str - URL filter table ID.
- vimeo_
restrict str - Set Vimeo-restrict ("7" = don't show mature content, "134" = don't show unrated and mature content). A value of cookie "content_rating".
- whitelists Sequence[str]
- FortiGuard whitelist settings. Valid values:
exempt-av
,exempt-webcontent
,exempt-activex-java-cookie
,exempt-dlp
,exempt-rangeblock
,extended-log-others
. - youtube_
restrict str - YouTube EDU filter level. Valid values:
strict
,none
,moderate
.
- profile String
- Profile.
- adom String
- Adom. This value is valid only when the
scopetype
isadom
, otherwise the value of adom in the provider will be inherited. - allowlists List<String>
- FortiGuard allowlist settings. Valid values:
exempt-av
,exempt-webcontent
,exempt-activex-java-cookie
,exempt-dlp
,exempt-rangeblock
,extended-log-others
. - blacklist String
- Enable/disable automatic addition of URLs detected by FortiSandbox to blacklist. Valid values:
disable
,enable
. - blocklist String
- Enable/disable automatic addition of URLs detected by FortiSandbox to blocklist. Valid values:
disable
,enable
. - bword
Table String - Banned word table ID.
- bword
Threshold Number - Banned word score threshold.
- content
Header StringList - Content header list.
- keyword
Matches List<String> - Search keywords to log when match is found.
- log
Search String - Enable/disable logging all search phrases. Valid values:
disable
,enable
. - object
Webfilter StringProfile Web Id - an identifier for the resource.
- safe
Searches List<String> - Safe search type. Valid values:
google
,yahoo
,bing
,url
,header
. - scopetype String
- The scope of application of the resource. Valid values:
inherit
,adom
,global
. Theinherit
means that the scopetype of the provider will be inherited, and adom will also be inherited. The default value isinherit
. - urlfilter
Table String - URL filter table ID.
- vimeo
Restrict String - Set Vimeo-restrict ("7" = don't show mature content, "134" = don't show unrated and mature content). A value of cookie "content_rating".
- whitelists List<String>
- FortiGuard whitelist settings. Valid values:
exempt-av
,exempt-webcontent
,exempt-activex-java-cookie
,exempt-dlp
,exempt-rangeblock
,extended-log-others
. - youtube
Restrict String - YouTube EDU filter level. Valid values:
strict
,none
,moderate
.
Outputs
All input properties are implicitly available as output properties. Additionally, the ObjectWebfilterProfileWeb 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 ObjectWebfilterProfileWeb Resource
Get an existing ObjectWebfilterProfileWeb 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?: ObjectWebfilterProfileWebState, opts?: CustomResourceOptions): ObjectWebfilterProfileWeb
@staticmethod
def get(resource_name: str,
id: str,
opts: Optional[ResourceOptions] = None,
adom: Optional[str] = None,
allowlists: Optional[Sequence[str]] = None,
blacklist: Optional[str] = None,
blocklist: Optional[str] = None,
bword_table: Optional[str] = None,
bword_threshold: Optional[float] = None,
content_header_list: Optional[str] = None,
keyword_matches: Optional[Sequence[str]] = None,
log_search: Optional[str] = None,
object_webfilter_profile_web_id: Optional[str] = None,
profile: Optional[str] = None,
safe_searches: Optional[Sequence[str]] = None,
scopetype: Optional[str] = None,
urlfilter_table: Optional[str] = None,
vimeo_restrict: Optional[str] = None,
whitelists: Optional[Sequence[str]] = None,
youtube_restrict: Optional[str] = None) -> ObjectWebfilterProfileWeb
func GetObjectWebfilterProfileWeb(ctx *Context, name string, id IDInput, state *ObjectWebfilterProfileWebState, opts ...ResourceOption) (*ObjectWebfilterProfileWeb, error)
public static ObjectWebfilterProfileWeb Get(string name, Input<string> id, ObjectWebfilterProfileWebState? state, CustomResourceOptions? opts = null)
public static ObjectWebfilterProfileWeb get(String name, Output<String> id, ObjectWebfilterProfileWebState state, CustomResourceOptions options)
resources: _: type: fortimanager:ObjectWebfilterProfileWeb 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.
- Adom string
- Adom. This value is valid only when the
scopetype
isadom
, otherwise the value of adom in the provider will be inherited. - Allowlists List<string>
- FortiGuard allowlist settings. Valid values:
exempt-av
,exempt-webcontent
,exempt-activex-java-cookie
,exempt-dlp
,exempt-rangeblock
,extended-log-others
. - Blacklist string
- Enable/disable automatic addition of URLs detected by FortiSandbox to blacklist. Valid values:
disable
,enable
. - Blocklist string
- Enable/disable automatic addition of URLs detected by FortiSandbox to blocklist. Valid values:
disable
,enable
. - Bword
Table string - Banned word table ID.
- Bword
Threshold double - Banned word score threshold.
- Content
Header stringList - Content header list.
- Keyword
Matches List<string> - Search keywords to log when match is found.
- Log
Search string - Enable/disable logging all search phrases. Valid values:
disable
,enable
. - Object
Webfilter stringProfile Web Id - an identifier for the resource.
- Profile string
- Profile.
- Safe
Searches List<string> - Safe search type. Valid values:
google
,yahoo
,bing
,url
,header
. - Scopetype string
- The scope of application of the resource. Valid values:
inherit
,adom
,global
. Theinherit
means that the scopetype of the provider will be inherited, and adom will also be inherited. The default value isinherit
. - Urlfilter
Table string - URL filter table ID.
- Vimeo
Restrict string - Set Vimeo-restrict ("7" = don't show mature content, "134" = don't show unrated and mature content). A value of cookie "content_rating".
- Whitelists List<string>
- FortiGuard whitelist settings. Valid values:
exempt-av
,exempt-webcontent
,exempt-activex-java-cookie
,exempt-dlp
,exempt-rangeblock
,extended-log-others
. - Youtube
Restrict string - YouTube EDU filter level. Valid values:
strict
,none
,moderate
.
- Adom string
- Adom. This value is valid only when the
scopetype
isadom
, otherwise the value of adom in the provider will be inherited. - Allowlists []string
- FortiGuard allowlist settings. Valid values:
exempt-av
,exempt-webcontent
,exempt-activex-java-cookie
,exempt-dlp
,exempt-rangeblock
,extended-log-others
. - Blacklist string
- Enable/disable automatic addition of URLs detected by FortiSandbox to blacklist. Valid values:
disable
,enable
. - Blocklist string
- Enable/disable automatic addition of URLs detected by FortiSandbox to blocklist. Valid values:
disable
,enable
. - Bword
Table string - Banned word table ID.
- Bword
Threshold float64 - Banned word score threshold.
- Content
Header stringList - Content header list.
- Keyword
Matches []string - Search keywords to log when match is found.
- Log
Search string - Enable/disable logging all search phrases. Valid values:
disable
,enable
. - Object
Webfilter stringProfile Web Id - an identifier for the resource.
- Profile string
- Profile.
- Safe
Searches []string - Safe search type. Valid values:
google
,yahoo
,bing
,url
,header
. - Scopetype string
- The scope of application of the resource. Valid values:
inherit
,adom
,global
. Theinherit
means that the scopetype of the provider will be inherited, and adom will also be inherited. The default value isinherit
. - Urlfilter
Table string - URL filter table ID.
- Vimeo
Restrict string - Set Vimeo-restrict ("7" = don't show mature content, "134" = don't show unrated and mature content). A value of cookie "content_rating".
- Whitelists []string
- FortiGuard whitelist settings. Valid values:
exempt-av
,exempt-webcontent
,exempt-activex-java-cookie
,exempt-dlp
,exempt-rangeblock
,extended-log-others
. - Youtube
Restrict string - YouTube EDU filter level. Valid values:
strict
,none
,moderate
.
- adom String
- Adom. This value is valid only when the
scopetype
isadom
, otherwise the value of adom in the provider will be inherited. - allowlists List<String>
- FortiGuard allowlist settings. Valid values:
exempt-av
,exempt-webcontent
,exempt-activex-java-cookie
,exempt-dlp
,exempt-rangeblock
,extended-log-others
. - blacklist String
- Enable/disable automatic addition of URLs detected by FortiSandbox to blacklist. Valid values:
disable
,enable
. - blocklist String
- Enable/disable automatic addition of URLs detected by FortiSandbox to blocklist. Valid values:
disable
,enable
. - bword
Table String - Banned word table ID.
- bword
Threshold Double - Banned word score threshold.
- content
Header StringList - Content header list.
- keyword
Matches List<String> - Search keywords to log when match is found.
- log
Search String - Enable/disable logging all search phrases. Valid values:
disable
,enable
. - object
Webfilter StringProfile Web Id - an identifier for the resource.
- profile String
- Profile.
- safe
Searches List<String> - Safe search type. Valid values:
google
,yahoo
,bing
,url
,header
. - scopetype String
- The scope of application of the resource. Valid values:
inherit
,adom
,global
. Theinherit
means that the scopetype of the provider will be inherited, and adom will also be inherited. The default value isinherit
. - urlfilter
Table String - URL filter table ID.
- vimeo
Restrict String - Set Vimeo-restrict ("7" = don't show mature content, "134" = don't show unrated and mature content). A value of cookie "content_rating".
- whitelists List<String>
- FortiGuard whitelist settings. Valid values:
exempt-av
,exempt-webcontent
,exempt-activex-java-cookie
,exempt-dlp
,exempt-rangeblock
,extended-log-others
. - youtube
Restrict String - YouTube EDU filter level. Valid values:
strict
,none
,moderate
.
- adom string
- Adom. This value is valid only when the
scopetype
isadom
, otherwise the value of adom in the provider will be inherited. - allowlists string[]
- FortiGuard allowlist settings. Valid values:
exempt-av
,exempt-webcontent
,exempt-activex-java-cookie
,exempt-dlp
,exempt-rangeblock
,extended-log-others
. - blacklist string
- Enable/disable automatic addition of URLs detected by FortiSandbox to blacklist. Valid values:
disable
,enable
. - blocklist string
- Enable/disable automatic addition of URLs detected by FortiSandbox to blocklist. Valid values:
disable
,enable
. - bword
Table string - Banned word table ID.
- bword
Threshold number - Banned word score threshold.
- content
Header stringList - Content header list.
- keyword
Matches string[] - Search keywords to log when match is found.
- log
Search string - Enable/disable logging all search phrases. Valid values:
disable
,enable
. - object
Webfilter stringProfile Web Id - an identifier for the resource.
- profile string
- Profile.
- safe
Searches string[] - Safe search type. Valid values:
google
,yahoo
,bing
,url
,header
. - scopetype string
- The scope of application of the resource. Valid values:
inherit
,adom
,global
. Theinherit
means that the scopetype of the provider will be inherited, and adom will also be inherited. The default value isinherit
. - urlfilter
Table string - URL filter table ID.
- vimeo
Restrict string - Set Vimeo-restrict ("7" = don't show mature content, "134" = don't show unrated and mature content). A value of cookie "content_rating".
- whitelists string[]
- FortiGuard whitelist settings. Valid values:
exempt-av
,exempt-webcontent
,exempt-activex-java-cookie
,exempt-dlp
,exempt-rangeblock
,extended-log-others
. - youtube
Restrict string - YouTube EDU filter level. Valid values:
strict
,none
,moderate
.
- adom str
- Adom. This value is valid only when the
scopetype
isadom
, otherwise the value of adom in the provider will be inherited. - allowlists Sequence[str]
- FortiGuard allowlist settings. Valid values:
exempt-av
,exempt-webcontent
,exempt-activex-java-cookie
,exempt-dlp
,exempt-rangeblock
,extended-log-others
. - blacklist str
- Enable/disable automatic addition of URLs detected by FortiSandbox to blacklist. Valid values:
disable
,enable
. - blocklist str
- Enable/disable automatic addition of URLs detected by FortiSandbox to blocklist. Valid values:
disable
,enable
. - bword_
table str - Banned word table ID.
- bword_
threshold float - Banned word score threshold.
- content_
header_ strlist - Content header list.
- keyword_
matches Sequence[str] - Search keywords to log when match is found.
- log_
search str - Enable/disable logging all search phrases. Valid values:
disable
,enable
. - object_
webfilter_ strprofile_ web_ id - an identifier for the resource.
- profile str
- Profile.
- safe_
searches Sequence[str] - Safe search type. Valid values:
google
,yahoo
,bing
,url
,header
. - scopetype str
- The scope of application of the resource. Valid values:
inherit
,adom
,global
. Theinherit
means that the scopetype of the provider will be inherited, and adom will also be inherited. The default value isinherit
. - urlfilter_
table str - URL filter table ID.
- vimeo_
restrict str - Set Vimeo-restrict ("7" = don't show mature content, "134" = don't show unrated and mature content). A value of cookie "content_rating".
- whitelists Sequence[str]
- FortiGuard whitelist settings. Valid values:
exempt-av
,exempt-webcontent
,exempt-activex-java-cookie
,exempt-dlp
,exempt-rangeblock
,extended-log-others
. - youtube_
restrict str - YouTube EDU filter level. Valid values:
strict
,none
,moderate
.
- adom String
- Adom. This value is valid only when the
scopetype
isadom
, otherwise the value of adom in the provider will be inherited. - allowlists List<String>
- FortiGuard allowlist settings. Valid values:
exempt-av
,exempt-webcontent
,exempt-activex-java-cookie
,exempt-dlp
,exempt-rangeblock
,extended-log-others
. - blacklist String
- Enable/disable automatic addition of URLs detected by FortiSandbox to blacklist. Valid values:
disable
,enable
. - blocklist String
- Enable/disable automatic addition of URLs detected by FortiSandbox to blocklist. Valid values:
disable
,enable
. - bword
Table String - Banned word table ID.
- bword
Threshold Number - Banned word score threshold.
- content
Header StringList - Content header list.
- keyword
Matches List<String> - Search keywords to log when match is found.
- log
Search String - Enable/disable logging all search phrases. Valid values:
disable
,enable
. - object
Webfilter StringProfile Web Id - an identifier for the resource.
- profile String
- Profile.
- safe
Searches List<String> - Safe search type. Valid values:
google
,yahoo
,bing
,url
,header
. - scopetype String
- The scope of application of the resource. Valid values:
inherit
,adom
,global
. Theinherit
means that the scopetype of the provider will be inherited, and adom will also be inherited. The default value isinherit
. - urlfilter
Table String - URL filter table ID.
- vimeo
Restrict String - Set Vimeo-restrict ("7" = don't show mature content, "134" = don't show unrated and mature content). A value of cookie "content_rating".
- whitelists List<String>
- FortiGuard whitelist settings. Valid values:
exempt-av
,exempt-webcontent
,exempt-activex-java-cookie
,exempt-dlp
,exempt-rangeblock
,extended-log-others
. - youtube
Restrict String - YouTube EDU filter level. Valid values:
strict
,none
,moderate
.
Import
ObjectWebfilter ProfileWeb can be imported using any of these accepted formats:
Set import_options = [“profile=YOUR_VALUE”] in the provider section.
$ export “FORTIMANAGER_IMPORT_TABLE”=“true”
$ pulumi import fortimanager:index/objectWebfilterProfileWeb:ObjectWebfilterProfileWeb labelname ObjectWebfilterProfileWeb
$ unset “FORTIMANAGER_IMPORT_TABLE”
-> Hint: The scopetype and adom for import will directly inherit the scopetype and adom configuration of the provider.
To learn more about importing existing cloud resources, see Importing resources.
Package Details
- Repository
- fortimanager fortinetdev/terraform-provider-fortimanager
- License
- Notes
- This Pulumi package is based on the
fortimanager
Terraform Provider.