fortimanager.ObjectCasbProfileSaasapplicationAccessrule
Explore with Pulumi AI
CASB profile access rule.
This resource is a sub resource for variable
access_rule
of resourcefortimanager.ObjectCasbProfileSaasapplication
. Conflict and overwrite may occur if use both of them. The following variables have sub resource. Avoid using them together, otherwise conflicts and overwrites may occur.
attribute_filter
:fortimanager.ObjectCasbProfileSaasapplicationAccessruleAttributefilter
Create ObjectCasbProfileSaasapplicationAccessrule Resource
Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.
Constructor syntax
new ObjectCasbProfileSaasapplicationAccessrule(name: string, args: ObjectCasbProfileSaasapplicationAccessruleArgs, opts?: CustomResourceOptions);
@overload
def ObjectCasbProfileSaasapplicationAccessrule(resource_name: str,
args: ObjectCasbProfileSaasapplicationAccessruleArgs,
opts: Optional[ResourceOptions] = None)
@overload
def ObjectCasbProfileSaasapplicationAccessrule(resource_name: str,
opts: Optional[ResourceOptions] = None,
profile: Optional[str] = None,
saas_application: Optional[str] = None,
action: Optional[str] = None,
adom: Optional[str] = None,
attribute_filters: Optional[Sequence[ObjectCasbProfileSaasapplicationAccessruleAttributeFilterArgs]] = None,
bypasses: Optional[Sequence[str]] = None,
dynamic_sort_subtable: Optional[str] = None,
name: Optional[str] = None,
object_casb_profile_saasapplication_accessrule_id: Optional[str] = None,
scopetype: Optional[str] = None)
func NewObjectCasbProfileSaasapplicationAccessrule(ctx *Context, name string, args ObjectCasbProfileSaasapplicationAccessruleArgs, opts ...ResourceOption) (*ObjectCasbProfileSaasapplicationAccessrule, error)
public ObjectCasbProfileSaasapplicationAccessrule(string name, ObjectCasbProfileSaasapplicationAccessruleArgs args, CustomResourceOptions? opts = null)
public ObjectCasbProfileSaasapplicationAccessrule(String name, ObjectCasbProfileSaasapplicationAccessruleArgs args)
public ObjectCasbProfileSaasapplicationAccessrule(String name, ObjectCasbProfileSaasapplicationAccessruleArgs args, CustomResourceOptions options)
type: fortimanager:ObjectCasbProfileSaasapplicationAccessrule
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 ObjectCasbProfileSaasapplicationAccessruleArgs
- 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 ObjectCasbProfileSaasapplicationAccessruleArgs
- 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 ObjectCasbProfileSaasapplicationAccessruleArgs
- The arguments to resource properties.
- opts ResourceOption
- Bag of options to control resource's behavior.
- name string
- The unique name of the resource.
- args ObjectCasbProfileSaasapplicationAccessruleArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- name String
- The unique name of the resource.
- args ObjectCasbProfileSaasapplicationAccessruleArgs
- 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 objectCasbProfileSaasapplicationAccessruleResource = new Fortimanager.ObjectCasbProfileSaasapplicationAccessrule("objectCasbProfileSaasapplicationAccessruleResource", new()
{
Profile = "string",
SaasApplication = "string",
Action = "string",
Adom = "string",
AttributeFilters = new[]
{
new Fortimanager.Inputs.ObjectCasbProfileSaasapplicationAccessruleAttributeFilterArgs
{
Action = "string",
AttributeMatches = new[]
{
"string",
},
Id = 0,
},
},
Bypasses = new[]
{
"string",
},
DynamicSortSubtable = "string",
Name = "string",
ObjectCasbProfileSaasapplicationAccessruleId = "string",
Scopetype = "string",
});
example, err := fortimanager.NewObjectCasbProfileSaasapplicationAccessrule(ctx, "objectCasbProfileSaasapplicationAccessruleResource", &fortimanager.ObjectCasbProfileSaasapplicationAccessruleArgs{
Profile: pulumi.String("string"),
SaasApplication: pulumi.String("string"),
Action: pulumi.String("string"),
Adom: pulumi.String("string"),
AttributeFilters: fortimanager.ObjectCasbProfileSaasapplicationAccessruleAttributeFilterTypeArray{
&fortimanager.ObjectCasbProfileSaasapplicationAccessruleAttributeFilterTypeArgs{
Action: pulumi.String("string"),
AttributeMatches: pulumi.StringArray{
pulumi.String("string"),
},
Id: pulumi.Float64(0),
},
},
Bypasses: pulumi.StringArray{
pulumi.String("string"),
},
DynamicSortSubtable: pulumi.String("string"),
Name: pulumi.String("string"),
ObjectCasbProfileSaasapplicationAccessruleId: pulumi.String("string"),
Scopetype: pulumi.String("string"),
})
var objectCasbProfileSaasapplicationAccessruleResource = new ObjectCasbProfileSaasapplicationAccessrule("objectCasbProfileSaasapplicationAccessruleResource", ObjectCasbProfileSaasapplicationAccessruleArgs.builder()
.profile("string")
.saasApplication("string")
.action("string")
.adom("string")
.attributeFilters(ObjectCasbProfileSaasapplicationAccessruleAttributeFilterArgs.builder()
.action("string")
.attributeMatches("string")
.id(0)
.build())
.bypasses("string")
.dynamicSortSubtable("string")
.name("string")
.objectCasbProfileSaasapplicationAccessruleId("string")
.scopetype("string")
.build());
object_casb_profile_saasapplication_accessrule_resource = fortimanager.ObjectCasbProfileSaasapplicationAccessrule("objectCasbProfileSaasapplicationAccessruleResource",
profile="string",
saas_application="string",
action="string",
adom="string",
attribute_filters=[{
"action": "string",
"attribute_matches": ["string"],
"id": 0,
}],
bypasses=["string"],
dynamic_sort_subtable="string",
name="string",
object_casb_profile_saasapplication_accessrule_id="string",
scopetype="string")
const objectCasbProfileSaasapplicationAccessruleResource = new fortimanager.ObjectCasbProfileSaasapplicationAccessrule("objectCasbProfileSaasapplicationAccessruleResource", {
profile: "string",
saasApplication: "string",
action: "string",
adom: "string",
attributeFilters: [{
action: "string",
attributeMatches: ["string"],
id: 0,
}],
bypasses: ["string"],
dynamicSortSubtable: "string",
name: "string",
objectCasbProfileSaasapplicationAccessruleId: "string",
scopetype: "string",
});
type: fortimanager:ObjectCasbProfileSaasapplicationAccessrule
properties:
action: string
adom: string
attributeFilters:
- action: string
attributeMatches:
- string
id: 0
bypasses:
- string
dynamicSortSubtable: string
name: string
objectCasbProfileSaasapplicationAccessruleId: string
profile: string
saasApplication: string
scopetype: string
ObjectCasbProfileSaasapplicationAccessrule 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 ObjectCasbProfileSaasapplicationAccessrule resource accepts the following input properties:
- Profile string
- Profile.
- Saas
Application string - Saas Application.
- Action string
- CASB access rule action. Valid values:
block
,bypass
,monitor
. - Adom string
- Adom. This value is valid only when the
scopetype
isadom
, otherwise the value of adom in the provider will be inherited. - Attribute
Filters List<ObjectCasb Profile Saasapplication Accessrule Attribute Filter> - Attribute-Filter. The structure of
attribute_filter
block is documented below. - Bypasses List<string>
- CASB bypass options. Valid values:
av
,dlp
,web-filter
,file-filter
,video-filter
. - Dynamic
Sort stringSubtable - true or false, set this parameter to true when using dynamic for_each + toset to configure and sort sub-tables, please do not set this parameter when configuring static sub-tables.
- Name string
- CASB access rule activity name.
- Object
Casb stringProfile Saasapplication Accessrule Id - an identifier for the resource with format {{name}}.
- 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
.
- Profile string
- Profile.
- Saas
Application string - Saas Application.
- Action string
- CASB access rule action. Valid values:
block
,bypass
,monitor
. - Adom string
- Adom. This value is valid only when the
scopetype
isadom
, otherwise the value of adom in the provider will be inherited. - Attribute
Filters []ObjectCasb Profile Saasapplication Accessrule Attribute Filter Type Args - Attribute-Filter. The structure of
attribute_filter
block is documented below. - Bypasses []string
- CASB bypass options. Valid values:
av
,dlp
,web-filter
,file-filter
,video-filter
. - Dynamic
Sort stringSubtable - true or false, set this parameter to true when using dynamic for_each + toset to configure and sort sub-tables, please do not set this parameter when configuring static sub-tables.
- Name string
- CASB access rule activity name.
- Object
Casb stringProfile Saasapplication Accessrule Id - an identifier for the resource with format {{name}}.
- 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
.
- profile String
- Profile.
- saas
Application String - Saas Application.
- action String
- CASB access rule action. Valid values:
block
,bypass
,monitor
. - adom String
- Adom. This value is valid only when the
scopetype
isadom
, otherwise the value of adom in the provider will be inherited. - attribute
Filters List<ObjectCasb Profile Saasapplication Accessrule Attribute Filter> - Attribute-Filter. The structure of
attribute_filter
block is documented below. - bypasses List<String>
- CASB bypass options. Valid values:
av
,dlp
,web-filter
,file-filter
,video-filter
. - dynamic
Sort StringSubtable - true or false, set this parameter to true when using dynamic for_each + toset to configure and sort sub-tables, please do not set this parameter when configuring static sub-tables.
- name String
- CASB access rule activity name.
- object
Casb StringProfile Saasapplication Accessrule Id - an identifier for the resource with format {{name}}.
- 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
.
- profile string
- Profile.
- saas
Application string - Saas Application.
- action string
- CASB access rule action. Valid values:
block
,bypass
,monitor
. - adom string
- Adom. This value is valid only when the
scopetype
isadom
, otherwise the value of adom in the provider will be inherited. - attribute
Filters ObjectCasb Profile Saasapplication Accessrule Attribute Filter[] - Attribute-Filter. The structure of
attribute_filter
block is documented below. - bypasses string[]
- CASB bypass options. Valid values:
av
,dlp
,web-filter
,file-filter
,video-filter
. - dynamic
Sort stringSubtable - true or false, set this parameter to true when using dynamic for_each + toset to configure and sort sub-tables, please do not set this parameter when configuring static sub-tables.
- name string
- CASB access rule activity name.
- object
Casb stringProfile Saasapplication Accessrule Id - an identifier for the resource with format {{name}}.
- 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
.
- profile str
- Profile.
- saas_
application str - Saas Application.
- action str
- CASB access rule action. Valid values:
block
,bypass
,monitor
. - adom str
- Adom. This value is valid only when the
scopetype
isadom
, otherwise the value of adom in the provider will be inherited. - attribute_
filters Sequence[ObjectCasb Profile Saasapplication Accessrule Attribute Filter Args] - Attribute-Filter. The structure of
attribute_filter
block is documented below. - bypasses Sequence[str]
- CASB bypass options. Valid values:
av
,dlp
,web-filter
,file-filter
,video-filter
. - dynamic_
sort_ strsubtable - true or false, set this parameter to true when using dynamic for_each + toset to configure and sort sub-tables, please do not set this parameter when configuring static sub-tables.
- name str
- CASB access rule activity name.
- object_
casb_ strprofile_ saasapplication_ accessrule_ id - an identifier for the resource with format {{name}}.
- 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
.
- profile String
- Profile.
- saas
Application String - Saas Application.
- action String
- CASB access rule action. Valid values:
block
,bypass
,monitor
. - adom String
- Adom. This value is valid only when the
scopetype
isadom
, otherwise the value of adom in the provider will be inherited. - attribute
Filters List<Property Map> - Attribute-Filter. The structure of
attribute_filter
block is documented below. - bypasses List<String>
- CASB bypass options. Valid values:
av
,dlp
,web-filter
,file-filter
,video-filter
. - dynamic
Sort StringSubtable - true or false, set this parameter to true when using dynamic for_each + toset to configure and sort sub-tables, please do not set this parameter when configuring static sub-tables.
- name String
- CASB access rule activity name.
- object
Casb StringProfile Saasapplication Accessrule Id - an identifier for the resource with format {{name}}.
- 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
.
Outputs
All input properties are implicitly available as output properties. Additionally, the ObjectCasbProfileSaasapplicationAccessrule 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 ObjectCasbProfileSaasapplicationAccessrule Resource
Get an existing ObjectCasbProfileSaasapplicationAccessrule 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?: ObjectCasbProfileSaasapplicationAccessruleState, opts?: CustomResourceOptions): ObjectCasbProfileSaasapplicationAccessrule
@staticmethod
def get(resource_name: str,
id: str,
opts: Optional[ResourceOptions] = None,
action: Optional[str] = None,
adom: Optional[str] = None,
attribute_filters: Optional[Sequence[ObjectCasbProfileSaasapplicationAccessruleAttributeFilterArgs]] = None,
bypasses: Optional[Sequence[str]] = None,
dynamic_sort_subtable: Optional[str] = None,
name: Optional[str] = None,
object_casb_profile_saasapplication_accessrule_id: Optional[str] = None,
profile: Optional[str] = None,
saas_application: Optional[str] = None,
scopetype: Optional[str] = None) -> ObjectCasbProfileSaasapplicationAccessrule
func GetObjectCasbProfileSaasapplicationAccessrule(ctx *Context, name string, id IDInput, state *ObjectCasbProfileSaasapplicationAccessruleState, opts ...ResourceOption) (*ObjectCasbProfileSaasapplicationAccessrule, error)
public static ObjectCasbProfileSaasapplicationAccessrule Get(string name, Input<string> id, ObjectCasbProfileSaasapplicationAccessruleState? state, CustomResourceOptions? opts = null)
public static ObjectCasbProfileSaasapplicationAccessrule get(String name, Output<String> id, ObjectCasbProfileSaasapplicationAccessruleState state, CustomResourceOptions options)
resources: _: type: fortimanager:ObjectCasbProfileSaasapplicationAccessrule 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.
- Action string
- CASB access rule action. Valid values:
block
,bypass
,monitor
. - Adom string
- Adom. This value is valid only when the
scopetype
isadom
, otherwise the value of adom in the provider will be inherited. - Attribute
Filters List<ObjectCasb Profile Saasapplication Accessrule Attribute Filter> - Attribute-Filter. The structure of
attribute_filter
block is documented below. - Bypasses List<string>
- CASB bypass options. Valid values:
av
,dlp
,web-filter
,file-filter
,video-filter
. - Dynamic
Sort stringSubtable - true or false, set this parameter to true when using dynamic for_each + toset to configure and sort sub-tables, please do not set this parameter when configuring static sub-tables.
- Name string
- CASB access rule activity name.
- Object
Casb stringProfile Saasapplication Accessrule Id - an identifier for the resource with format {{name}}.
- Profile string
- Profile.
- Saas
Application string - Saas Application.
- 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
.
- Action string
- CASB access rule action. Valid values:
block
,bypass
,monitor
. - Adom string
- Adom. This value is valid only when the
scopetype
isadom
, otherwise the value of adom in the provider will be inherited. - Attribute
Filters []ObjectCasb Profile Saasapplication Accessrule Attribute Filter Type Args - Attribute-Filter. The structure of
attribute_filter
block is documented below. - Bypasses []string
- CASB bypass options. Valid values:
av
,dlp
,web-filter
,file-filter
,video-filter
. - Dynamic
Sort stringSubtable - true or false, set this parameter to true when using dynamic for_each + toset to configure and sort sub-tables, please do not set this parameter when configuring static sub-tables.
- Name string
- CASB access rule activity name.
- Object
Casb stringProfile Saasapplication Accessrule Id - an identifier for the resource with format {{name}}.
- Profile string
- Profile.
- Saas
Application string - Saas Application.
- 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
.
- action String
- CASB access rule action. Valid values:
block
,bypass
,monitor
. - adom String
- Adom. This value is valid only when the
scopetype
isadom
, otherwise the value of adom in the provider will be inherited. - attribute
Filters List<ObjectCasb Profile Saasapplication Accessrule Attribute Filter> - Attribute-Filter. The structure of
attribute_filter
block is documented below. - bypasses List<String>
- CASB bypass options. Valid values:
av
,dlp
,web-filter
,file-filter
,video-filter
. - dynamic
Sort StringSubtable - true or false, set this parameter to true when using dynamic for_each + toset to configure and sort sub-tables, please do not set this parameter when configuring static sub-tables.
- name String
- CASB access rule activity name.
- object
Casb StringProfile Saasapplication Accessrule Id - an identifier for the resource with format {{name}}.
- profile String
- Profile.
- saas
Application String - Saas Application.
- 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
.
- action string
- CASB access rule action. Valid values:
block
,bypass
,monitor
. - adom string
- Adom. This value is valid only when the
scopetype
isadom
, otherwise the value of adom in the provider will be inherited. - attribute
Filters ObjectCasb Profile Saasapplication Accessrule Attribute Filter[] - Attribute-Filter. The structure of
attribute_filter
block is documented below. - bypasses string[]
- CASB bypass options. Valid values:
av
,dlp
,web-filter
,file-filter
,video-filter
. - dynamic
Sort stringSubtable - true or false, set this parameter to true when using dynamic for_each + toset to configure and sort sub-tables, please do not set this parameter when configuring static sub-tables.
- name string
- CASB access rule activity name.
- object
Casb stringProfile Saasapplication Accessrule Id - an identifier for the resource with format {{name}}.
- profile string
- Profile.
- saas
Application string - Saas Application.
- 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
.
- action str
- CASB access rule action. Valid values:
block
,bypass
,monitor
. - adom str
- Adom. This value is valid only when the
scopetype
isadom
, otherwise the value of adom in the provider will be inherited. - attribute_
filters Sequence[ObjectCasb Profile Saasapplication Accessrule Attribute Filter Args] - Attribute-Filter. The structure of
attribute_filter
block is documented below. - bypasses Sequence[str]
- CASB bypass options. Valid values:
av
,dlp
,web-filter
,file-filter
,video-filter
. - dynamic_
sort_ strsubtable - true or false, set this parameter to true when using dynamic for_each + toset to configure and sort sub-tables, please do not set this parameter when configuring static sub-tables.
- name str
- CASB access rule activity name.
- object_
casb_ strprofile_ saasapplication_ accessrule_ id - an identifier for the resource with format {{name}}.
- profile str
- Profile.
- saas_
application str - Saas Application.
- 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
.
- action String
- CASB access rule action. Valid values:
block
,bypass
,monitor
. - adom String
- Adom. This value is valid only when the
scopetype
isadom
, otherwise the value of adom in the provider will be inherited. - attribute
Filters List<Property Map> - Attribute-Filter. The structure of
attribute_filter
block is documented below. - bypasses List<String>
- CASB bypass options. Valid values:
av
,dlp
,web-filter
,file-filter
,video-filter
. - dynamic
Sort StringSubtable - true or false, set this parameter to true when using dynamic for_each + toset to configure and sort sub-tables, please do not set this parameter when configuring static sub-tables.
- name String
- CASB access rule activity name.
- object
Casb StringProfile Saasapplication Accessrule Id - an identifier for the resource with format {{name}}.
- profile String
- Profile.
- saas
Application String - Saas Application.
- 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
.
Supporting Types
ObjectCasbProfileSaasapplicationAccessruleAttributeFilter, ObjectCasbProfileSaasapplicationAccessruleAttributeFilterArgs
- Action string
- CASB access rule tenant control action. Valid values:
block
,monitor
,bypass
. - Attribute
Matches List<string> - CASB access rule tenant match.
- Id double
- CASB tenant control ID.
- Action string
- CASB access rule tenant control action. Valid values:
block
,monitor
,bypass
. - Attribute
Matches []string - CASB access rule tenant match.
- Id float64
- CASB tenant control ID.
- action String
- CASB access rule tenant control action. Valid values:
block
,monitor
,bypass
. - attribute
Matches List<String> - CASB access rule tenant match.
- id Double
- CASB tenant control ID.
- action string
- CASB access rule tenant control action. Valid values:
block
,monitor
,bypass
. - attribute
Matches string[] - CASB access rule tenant match.
- id number
- CASB tenant control ID.
- action str
- CASB access rule tenant control action. Valid values:
block
,monitor
,bypass
. - attribute_
matches Sequence[str] - CASB access rule tenant match.
- id float
- CASB tenant control ID.
- action String
- CASB access rule tenant control action. Valid values:
block
,monitor
,bypass
. - attribute
Matches List<String> - CASB access rule tenant match.
- id Number
- CASB tenant control ID.
Import
ObjectCasb ProfileSaasApplicationAccessRule can be imported using any of these accepted formats:
Set import_options = [“profile=YOUR_VALUE”, “saas_application=YOUR_VALUE”] in the provider section.
$ export “FORTIMANAGER_IMPORT_TABLE”=“true”
$ pulumi import fortimanager:index/objectCasbProfileSaasapplicationAccessrule:ObjectCasbProfileSaasapplicationAccessrule labelname {{name}}
$ 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.