1. Packages
  2. Fortios
  3. API Docs
  4. application
  5. Group
Fortios v0.0.6 published on Tuesday, Jul 9, 2024 by pulumiverse

fortios.application.Group

Explore with Pulumi AI

Configure firewall application groups.

Example Usage

import * as pulumi from "@pulumi/pulumi";
import * as fortios from "@pulumiverse/fortios";

const trname = new fortios.application.Group("trname", {
    categories: [{
        id: 2,
    }],
    comment: "group1 test",
    type: "category",
});
Copy
import pulumi
import pulumiverse_fortios as fortios

trname = fortios.application.Group("trname",
    categories=[fortios.application.GroupCategoryArgs(
        id=2,
    )],
    comment="group1 test",
    type="category")
Copy
package main

import (
	"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
	"github.com/pulumiverse/pulumi-fortios/sdk/go/fortios/application"
)

func main() {
	pulumi.Run(func(ctx *pulumi.Context) error {
		_, err := application.NewGroup(ctx, "trname", &application.GroupArgs{
			Categories: application.GroupCategoryArray{
				&application.GroupCategoryArgs{
					Id: pulumi.Int(2),
				},
			},
			Comment: pulumi.String("group1 test"),
			Type:    pulumi.String("category"),
		})
		if err != nil {
			return err
		}
		return nil
	})
}
Copy
using System.Collections.Generic;
using System.Linq;
using Pulumi;
using Fortios = Pulumiverse.Fortios;

return await Deployment.RunAsync(() => 
{
    var trname = new Fortios.Application.Group("trname", new()
    {
        Categories = new[]
        {
            new Fortios.Application.Inputs.GroupCategoryArgs
            {
                Id = 2,
            },
        },
        Comment = "group1 test",
        Type = "category",
    });

});
Copy
package generated_program;

import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.fortios.application.Group;
import com.pulumi.fortios.application.GroupArgs;
import com.pulumi.fortios.application.inputs.GroupCategoryArgs;
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 trname = new Group("trname", GroupArgs.builder()
            .categories(GroupCategoryArgs.builder()
                .id(2)
                .build())
            .comment("group1 test")
            .type("category")
            .build());

    }
}
Copy
resources:
  trname:
    type: fortios:application:Group
    properties:
      categories:
        - id: 2
      comment: group1 test
      type: category
Copy

Create Group Resource

Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.

Constructor syntax

new Group(name: string, args?: GroupArgs, opts?: CustomResourceOptions);
@overload
def Group(resource_name: str,
          args: Optional[GroupArgs] = None,
          opts: Optional[ResourceOptions] = None)

@overload
def Group(resource_name: str,
          opts: Optional[ResourceOptions] = None,
          applications: Optional[Sequence[GroupApplicationArgs]] = None,
          behavior: Optional[str] = None,
          categories: Optional[Sequence[GroupCategoryArgs]] = None,
          comment: Optional[str] = None,
          dynamic_sort_subtable: Optional[str] = None,
          get_all_tables: Optional[str] = None,
          name: Optional[str] = None,
          popularity: Optional[str] = None,
          protocols: Optional[str] = None,
          risks: Optional[Sequence[GroupRiskArgs]] = None,
          technology: Optional[str] = None,
          type: Optional[str] = None,
          vdomparam: Optional[str] = None,
          vendor: Optional[str] = None)
func NewGroup(ctx *Context, name string, args *GroupArgs, opts ...ResourceOption) (*Group, error)
public Group(string name, GroupArgs? args = null, CustomResourceOptions? opts = null)
public Group(String name, GroupArgs args)
public Group(String name, GroupArgs args, CustomResourceOptions options)
type: fortios:application:Group
properties: # The arguments to resource properties.
options: # Bag of options to control resource's behavior.

Parameters

name This property is required. string
The unique name of the resource.
args GroupArgs
The arguments to resource properties.
opts CustomResourceOptions
Bag of options to control resource's behavior.
resource_name This property is required. str
The unique name of the resource.
args GroupArgs
The arguments to resource properties.
opts ResourceOptions
Bag of options to control resource's behavior.
ctx Context
Context object for the current deployment.
name This property is required. string
The unique name of the resource.
args GroupArgs
The arguments to resource properties.
opts ResourceOption
Bag of options to control resource's behavior.
name This property is required. string
The unique name of the resource.
args GroupArgs
The arguments to resource properties.
opts CustomResourceOptions
Bag of options to control resource's behavior.
name This property is required. String
The unique name of the resource.
args This property is required. GroupArgs
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 groupResource = new Fortios.Application.Group("groupResource", new()
{
    Applications = new[]
    {
        new Fortios.Application.Inputs.GroupApplicationArgs
        {
            Id = 0,
        },
    },
    Behavior = "string",
    Categories = new[]
    {
        new Fortios.Application.Inputs.GroupCategoryArgs
        {
            Id = 0,
        },
    },
    Comment = "string",
    DynamicSortSubtable = "string",
    GetAllTables = "string",
    Name = "string",
    Popularity = "string",
    Protocols = "string",
    Risks = new[]
    {
        new Fortios.Application.Inputs.GroupRiskArgs
        {
            Level = 0,
        },
    },
    Technology = "string",
    Type = "string",
    Vdomparam = "string",
    Vendor = "string",
});
Copy
example, err := application.NewGroup(ctx, "groupResource", &application.GroupArgs{
	Applications: application.GroupApplicationArray{
		&application.GroupApplicationArgs{
			Id: pulumi.Int(0),
		},
	},
	Behavior: pulumi.String("string"),
	Categories: application.GroupCategoryArray{
		&application.GroupCategoryArgs{
			Id: pulumi.Int(0),
		},
	},
	Comment:             pulumi.String("string"),
	DynamicSortSubtable: pulumi.String("string"),
	GetAllTables:        pulumi.String("string"),
	Name:                pulumi.String("string"),
	Popularity:          pulumi.String("string"),
	Protocols:           pulumi.String("string"),
	Risks: application.GroupRiskArray{
		&application.GroupRiskArgs{
			Level: pulumi.Int(0),
		},
	},
	Technology: pulumi.String("string"),
	Type:       pulumi.String("string"),
	Vdomparam:  pulumi.String("string"),
	Vendor:     pulumi.String("string"),
})
Copy
var groupResource = new Group("groupResource", GroupArgs.builder()
    .applications(GroupApplicationArgs.builder()
        .id(0)
        .build())
    .behavior("string")
    .categories(GroupCategoryArgs.builder()
        .id(0)
        .build())
    .comment("string")
    .dynamicSortSubtable("string")
    .getAllTables("string")
    .name("string")
    .popularity("string")
    .protocols("string")
    .risks(GroupRiskArgs.builder()
        .level(0)
        .build())
    .technology("string")
    .type("string")
    .vdomparam("string")
    .vendor("string")
    .build());
Copy
group_resource = fortios.application.Group("groupResource",
    applications=[{
        "id": 0,
    }],
    behavior="string",
    categories=[{
        "id": 0,
    }],
    comment="string",
    dynamic_sort_subtable="string",
    get_all_tables="string",
    name="string",
    popularity="string",
    protocols="string",
    risks=[{
        "level": 0,
    }],
    technology="string",
    type="string",
    vdomparam="string",
    vendor="string")
Copy
const groupResource = new fortios.application.Group("groupResource", {
    applications: [{
        id: 0,
    }],
    behavior: "string",
    categories: [{
        id: 0,
    }],
    comment: "string",
    dynamicSortSubtable: "string",
    getAllTables: "string",
    name: "string",
    popularity: "string",
    protocols: "string",
    risks: [{
        level: 0,
    }],
    technology: "string",
    type: "string",
    vdomparam: "string",
    vendor: "string",
});
Copy
type: fortios:application:Group
properties:
    applications:
        - id: 0
    behavior: string
    categories:
        - id: 0
    comment: string
    dynamicSortSubtable: string
    getAllTables: string
    name: string
    popularity: string
    protocols: string
    risks:
        - level: 0
    technology: string
    type: string
    vdomparam: string
    vendor: string
Copy

Group 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 Group resource accepts the following input properties:

Applications List<Pulumiverse.Fortios.Application.Inputs.GroupApplication>
Application ID list. The structure of application block is documented below.
Behavior string
Application behavior filter.
Categories List<Pulumiverse.Fortios.Application.Inputs.GroupCategory>
Application category ID list. The structure of category block is documented below.
Comment string
Comment
DynamicSortSubtable string
Sort sub-tables, please do not set this parameter when configuring static sub-tables. Options: [ false, true, natural, alphabetical ]. false: Default value, do not sort tables; true/natural: sort tables in natural order. For example: [ a10, a2 ] -> [ a2, a10 ]; alphabetical: sort tables in alphabetical order. For example: [ a10, a2 ] -> [ a10, a2 ].
GetAllTables string
Get all sub-tables including unconfigured tables. Do not set this variable to true if you configure sub-table in another resource, otherwise, conflicts and overwrite will occur. Options: [ false, true ]. false: Default value, do not get unconfigured tables; true: get all tables including unconfigured tables.
Name Changes to this property will trigger replacement. string
Application group name.
Popularity string
Application popularity filter (1 - 5, from least to most popular). Valid values: 1, 2, 3, 4, 5.
Protocols string
Application protocol filter.
Risks List<Pulumiverse.Fortios.Application.Inputs.GroupRisk>
Risk, or impact, of allowing traffic from this application to occur (1 - 5; Low, Elevated, Medium, High, and Critical). The structure of risk block is documented below.
Technology string
Application technology filter.
Type string
Application group type.
Vdomparam Changes to this property will trigger replacement. string
Specifies the vdom to which the resource will be applied when the FortiGate unit is running in VDOM mode. Only one vdom can be specified. If you want to inherit the vdom configuration of the provider, please do not set this parameter.
Vendor string
Application vendor filter.
Applications []GroupApplicationArgs
Application ID list. The structure of application block is documented below.
Behavior string
Application behavior filter.
Categories []GroupCategoryArgs
Application category ID list. The structure of category block is documented below.
Comment string
Comment
DynamicSortSubtable string
Sort sub-tables, please do not set this parameter when configuring static sub-tables. Options: [ false, true, natural, alphabetical ]. false: Default value, do not sort tables; true/natural: sort tables in natural order. For example: [ a10, a2 ] -> [ a2, a10 ]; alphabetical: sort tables in alphabetical order. For example: [ a10, a2 ] -> [ a10, a2 ].
GetAllTables string
Get all sub-tables including unconfigured tables. Do not set this variable to true if you configure sub-table in another resource, otherwise, conflicts and overwrite will occur. Options: [ false, true ]. false: Default value, do not get unconfigured tables; true: get all tables including unconfigured tables.
Name Changes to this property will trigger replacement. string
Application group name.
Popularity string
Application popularity filter (1 - 5, from least to most popular). Valid values: 1, 2, 3, 4, 5.
Protocols string
Application protocol filter.
Risks []GroupRiskArgs
Risk, or impact, of allowing traffic from this application to occur (1 - 5; Low, Elevated, Medium, High, and Critical). The structure of risk block is documented below.
Technology string
Application technology filter.
Type string
Application group type.
Vdomparam Changes to this property will trigger replacement. string
Specifies the vdom to which the resource will be applied when the FortiGate unit is running in VDOM mode. Only one vdom can be specified. If you want to inherit the vdom configuration of the provider, please do not set this parameter.
Vendor string
Application vendor filter.
applications List<GroupApplication>
Application ID list. The structure of application block is documented below.
behavior String
Application behavior filter.
categories List<GroupCategory>
Application category ID list. The structure of category block is documented below.
comment String
Comment
dynamicSortSubtable String
Sort sub-tables, please do not set this parameter when configuring static sub-tables. Options: [ false, true, natural, alphabetical ]. false: Default value, do not sort tables; true/natural: sort tables in natural order. For example: [ a10, a2 ] -> [ a2, a10 ]; alphabetical: sort tables in alphabetical order. For example: [ a10, a2 ] -> [ a10, a2 ].
getAllTables String
Get all sub-tables including unconfigured tables. Do not set this variable to true if you configure sub-table in another resource, otherwise, conflicts and overwrite will occur. Options: [ false, true ]. false: Default value, do not get unconfigured tables; true: get all tables including unconfigured tables.
name Changes to this property will trigger replacement. String
Application group name.
popularity String
Application popularity filter (1 - 5, from least to most popular). Valid values: 1, 2, 3, 4, 5.
protocols String
Application protocol filter.
risks List<GroupRisk>
Risk, or impact, of allowing traffic from this application to occur (1 - 5; Low, Elevated, Medium, High, and Critical). The structure of risk block is documented below.
technology String
Application technology filter.
type String
Application group type.
vdomparam Changes to this property will trigger replacement. String
Specifies the vdom to which the resource will be applied when the FortiGate unit is running in VDOM mode. Only one vdom can be specified. If you want to inherit the vdom configuration of the provider, please do not set this parameter.
vendor String
Application vendor filter.
applications GroupApplication[]
Application ID list. The structure of application block is documented below.
behavior string
Application behavior filter.
categories GroupCategory[]
Application category ID list. The structure of category block is documented below.
comment string
Comment
dynamicSortSubtable string
Sort sub-tables, please do not set this parameter when configuring static sub-tables. Options: [ false, true, natural, alphabetical ]. false: Default value, do not sort tables; true/natural: sort tables in natural order. For example: [ a10, a2 ] -> [ a2, a10 ]; alphabetical: sort tables in alphabetical order. For example: [ a10, a2 ] -> [ a10, a2 ].
getAllTables string
Get all sub-tables including unconfigured tables. Do not set this variable to true if you configure sub-table in another resource, otherwise, conflicts and overwrite will occur. Options: [ false, true ]. false: Default value, do not get unconfigured tables; true: get all tables including unconfigured tables.
name Changes to this property will trigger replacement. string
Application group name.
popularity string
Application popularity filter (1 - 5, from least to most popular). Valid values: 1, 2, 3, 4, 5.
protocols string
Application protocol filter.
risks GroupRisk[]
Risk, or impact, of allowing traffic from this application to occur (1 - 5; Low, Elevated, Medium, High, and Critical). The structure of risk block is documented below.
technology string
Application technology filter.
type string
Application group type.
vdomparam Changes to this property will trigger replacement. string
Specifies the vdom to which the resource will be applied when the FortiGate unit is running in VDOM mode. Only one vdom can be specified. If you want to inherit the vdom configuration of the provider, please do not set this parameter.
vendor string
Application vendor filter.
applications Sequence[GroupApplicationArgs]
Application ID list. The structure of application block is documented below.
behavior str
Application behavior filter.
categories Sequence[GroupCategoryArgs]
Application category ID list. The structure of category block is documented below.
comment str
Comment
dynamic_sort_subtable str
Sort sub-tables, please do not set this parameter when configuring static sub-tables. Options: [ false, true, natural, alphabetical ]. false: Default value, do not sort tables; true/natural: sort tables in natural order. For example: [ a10, a2 ] -> [ a2, a10 ]; alphabetical: sort tables in alphabetical order. For example: [ a10, a2 ] -> [ a10, a2 ].
get_all_tables str
Get all sub-tables including unconfigured tables. Do not set this variable to true if you configure sub-table in another resource, otherwise, conflicts and overwrite will occur. Options: [ false, true ]. false: Default value, do not get unconfigured tables; true: get all tables including unconfigured tables.
name Changes to this property will trigger replacement. str
Application group name.
popularity str
Application popularity filter (1 - 5, from least to most popular). Valid values: 1, 2, 3, 4, 5.
protocols str
Application protocol filter.
risks Sequence[GroupRiskArgs]
Risk, or impact, of allowing traffic from this application to occur (1 - 5; Low, Elevated, Medium, High, and Critical). The structure of risk block is documented below.
technology str
Application technology filter.
type str
Application group type.
vdomparam Changes to this property will trigger replacement. str
Specifies the vdom to which the resource will be applied when the FortiGate unit is running in VDOM mode. Only one vdom can be specified. If you want to inherit the vdom configuration of the provider, please do not set this parameter.
vendor str
Application vendor filter.
applications List<Property Map>
Application ID list. The structure of application block is documented below.
behavior String
Application behavior filter.
categories List<Property Map>
Application category ID list. The structure of category block is documented below.
comment String
Comment
dynamicSortSubtable String
Sort sub-tables, please do not set this parameter when configuring static sub-tables. Options: [ false, true, natural, alphabetical ]. false: Default value, do not sort tables; true/natural: sort tables in natural order. For example: [ a10, a2 ] -> [ a2, a10 ]; alphabetical: sort tables in alphabetical order. For example: [ a10, a2 ] -> [ a10, a2 ].
getAllTables String
Get all sub-tables including unconfigured tables. Do not set this variable to true if you configure sub-table in another resource, otherwise, conflicts and overwrite will occur. Options: [ false, true ]. false: Default value, do not get unconfigured tables; true: get all tables including unconfigured tables.
name Changes to this property will trigger replacement. String
Application group name.
popularity String
Application popularity filter (1 - 5, from least to most popular). Valid values: 1, 2, 3, 4, 5.
protocols String
Application protocol filter.
risks List<Property Map>
Risk, or impact, of allowing traffic from this application to occur (1 - 5; Low, Elevated, Medium, High, and Critical). The structure of risk block is documented below.
technology String
Application technology filter.
type String
Application group type.
vdomparam Changes to this property will trigger replacement. String
Specifies the vdom to which the resource will be applied when the FortiGate unit is running in VDOM mode. Only one vdom can be specified. If you want to inherit the vdom configuration of the provider, please do not set this parameter.
vendor String
Application vendor filter.

Outputs

All input properties are implicitly available as output properties. Additionally, the Group 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 Group Resource

Get an existing Group 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?: GroupState, opts?: CustomResourceOptions): Group
@staticmethod
def get(resource_name: str,
        id: str,
        opts: Optional[ResourceOptions] = None,
        applications: Optional[Sequence[GroupApplicationArgs]] = None,
        behavior: Optional[str] = None,
        categories: Optional[Sequence[GroupCategoryArgs]] = None,
        comment: Optional[str] = None,
        dynamic_sort_subtable: Optional[str] = None,
        get_all_tables: Optional[str] = None,
        name: Optional[str] = None,
        popularity: Optional[str] = None,
        protocols: Optional[str] = None,
        risks: Optional[Sequence[GroupRiskArgs]] = None,
        technology: Optional[str] = None,
        type: Optional[str] = None,
        vdomparam: Optional[str] = None,
        vendor: Optional[str] = None) -> Group
func GetGroup(ctx *Context, name string, id IDInput, state *GroupState, opts ...ResourceOption) (*Group, error)
public static Group Get(string name, Input<string> id, GroupState? state, CustomResourceOptions? opts = null)
public static Group get(String name, Output<String> id, GroupState state, CustomResourceOptions options)
resources:  _:    type: fortios:application:Group    get:      id: ${id}
name This property is required.
The unique name of the resulting resource.
id This property is required.
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 This property is required.
The unique name of the resulting resource.
id This property is required.
The unique provider ID of the resource to lookup.
name This property is required.
The unique name of the resulting resource.
id This property is required.
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 This property is required.
The unique name of the resulting resource.
id This property is required.
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 This property is required.
The unique name of the resulting resource.
id This property is required.
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.
The following state arguments are supported:
Applications List<Pulumiverse.Fortios.Application.Inputs.GroupApplication>
Application ID list. The structure of application block is documented below.
Behavior string
Application behavior filter.
Categories List<Pulumiverse.Fortios.Application.Inputs.GroupCategory>
Application category ID list. The structure of category block is documented below.
Comment string
Comment
DynamicSortSubtable string
Sort sub-tables, please do not set this parameter when configuring static sub-tables. Options: [ false, true, natural, alphabetical ]. false: Default value, do not sort tables; true/natural: sort tables in natural order. For example: [ a10, a2 ] -> [ a2, a10 ]; alphabetical: sort tables in alphabetical order. For example: [ a10, a2 ] -> [ a10, a2 ].
GetAllTables string
Get all sub-tables including unconfigured tables. Do not set this variable to true if you configure sub-table in another resource, otherwise, conflicts and overwrite will occur. Options: [ false, true ]. false: Default value, do not get unconfigured tables; true: get all tables including unconfigured tables.
Name Changes to this property will trigger replacement. string
Application group name.
Popularity string
Application popularity filter (1 - 5, from least to most popular). Valid values: 1, 2, 3, 4, 5.
Protocols string
Application protocol filter.
Risks List<Pulumiverse.Fortios.Application.Inputs.GroupRisk>
Risk, or impact, of allowing traffic from this application to occur (1 - 5; Low, Elevated, Medium, High, and Critical). The structure of risk block is documented below.
Technology string
Application technology filter.
Type string
Application group type.
Vdomparam Changes to this property will trigger replacement. string
Specifies the vdom to which the resource will be applied when the FortiGate unit is running in VDOM mode. Only one vdom can be specified. If you want to inherit the vdom configuration of the provider, please do not set this parameter.
Vendor string
Application vendor filter.
Applications []GroupApplicationArgs
Application ID list. The structure of application block is documented below.
Behavior string
Application behavior filter.
Categories []GroupCategoryArgs
Application category ID list. The structure of category block is documented below.
Comment string
Comment
DynamicSortSubtable string
Sort sub-tables, please do not set this parameter when configuring static sub-tables. Options: [ false, true, natural, alphabetical ]. false: Default value, do not sort tables; true/natural: sort tables in natural order. For example: [ a10, a2 ] -> [ a2, a10 ]; alphabetical: sort tables in alphabetical order. For example: [ a10, a2 ] -> [ a10, a2 ].
GetAllTables string
Get all sub-tables including unconfigured tables. Do not set this variable to true if you configure sub-table in another resource, otherwise, conflicts and overwrite will occur. Options: [ false, true ]. false: Default value, do not get unconfigured tables; true: get all tables including unconfigured tables.
Name Changes to this property will trigger replacement. string
Application group name.
Popularity string
Application popularity filter (1 - 5, from least to most popular). Valid values: 1, 2, 3, 4, 5.
Protocols string
Application protocol filter.
Risks []GroupRiskArgs
Risk, or impact, of allowing traffic from this application to occur (1 - 5; Low, Elevated, Medium, High, and Critical). The structure of risk block is documented below.
Technology string
Application technology filter.
Type string
Application group type.
Vdomparam Changes to this property will trigger replacement. string
Specifies the vdom to which the resource will be applied when the FortiGate unit is running in VDOM mode. Only one vdom can be specified. If you want to inherit the vdom configuration of the provider, please do not set this parameter.
Vendor string
Application vendor filter.
applications List<GroupApplication>
Application ID list. The structure of application block is documented below.
behavior String
Application behavior filter.
categories List<GroupCategory>
Application category ID list. The structure of category block is documented below.
comment String
Comment
dynamicSortSubtable String
Sort sub-tables, please do not set this parameter when configuring static sub-tables. Options: [ false, true, natural, alphabetical ]. false: Default value, do not sort tables; true/natural: sort tables in natural order. For example: [ a10, a2 ] -> [ a2, a10 ]; alphabetical: sort tables in alphabetical order. For example: [ a10, a2 ] -> [ a10, a2 ].
getAllTables String
Get all sub-tables including unconfigured tables. Do not set this variable to true if you configure sub-table in another resource, otherwise, conflicts and overwrite will occur. Options: [ false, true ]. false: Default value, do not get unconfigured tables; true: get all tables including unconfigured tables.
name Changes to this property will trigger replacement. String
Application group name.
popularity String
Application popularity filter (1 - 5, from least to most popular). Valid values: 1, 2, 3, 4, 5.
protocols String
Application protocol filter.
risks List<GroupRisk>
Risk, or impact, of allowing traffic from this application to occur (1 - 5; Low, Elevated, Medium, High, and Critical). The structure of risk block is documented below.
technology String
Application technology filter.
type String
Application group type.
vdomparam Changes to this property will trigger replacement. String
Specifies the vdom to which the resource will be applied when the FortiGate unit is running in VDOM mode. Only one vdom can be specified. If you want to inherit the vdom configuration of the provider, please do not set this parameter.
vendor String
Application vendor filter.
applications GroupApplication[]
Application ID list. The structure of application block is documented below.
behavior string
Application behavior filter.
categories GroupCategory[]
Application category ID list. The structure of category block is documented below.
comment string
Comment
dynamicSortSubtable string
Sort sub-tables, please do not set this parameter when configuring static sub-tables. Options: [ false, true, natural, alphabetical ]. false: Default value, do not sort tables; true/natural: sort tables in natural order. For example: [ a10, a2 ] -> [ a2, a10 ]; alphabetical: sort tables in alphabetical order. For example: [ a10, a2 ] -> [ a10, a2 ].
getAllTables string
Get all sub-tables including unconfigured tables. Do not set this variable to true if you configure sub-table in another resource, otherwise, conflicts and overwrite will occur. Options: [ false, true ]. false: Default value, do not get unconfigured tables; true: get all tables including unconfigured tables.
name Changes to this property will trigger replacement. string
Application group name.
popularity string
Application popularity filter (1 - 5, from least to most popular). Valid values: 1, 2, 3, 4, 5.
protocols string
Application protocol filter.
risks GroupRisk[]
Risk, or impact, of allowing traffic from this application to occur (1 - 5; Low, Elevated, Medium, High, and Critical). The structure of risk block is documented below.
technology string
Application technology filter.
type string
Application group type.
vdomparam Changes to this property will trigger replacement. string
Specifies the vdom to which the resource will be applied when the FortiGate unit is running in VDOM mode. Only one vdom can be specified. If you want to inherit the vdom configuration of the provider, please do not set this parameter.
vendor string
Application vendor filter.
applications Sequence[GroupApplicationArgs]
Application ID list. The structure of application block is documented below.
behavior str
Application behavior filter.
categories Sequence[GroupCategoryArgs]
Application category ID list. The structure of category block is documented below.
comment str
Comment
dynamic_sort_subtable str
Sort sub-tables, please do not set this parameter when configuring static sub-tables. Options: [ false, true, natural, alphabetical ]. false: Default value, do not sort tables; true/natural: sort tables in natural order. For example: [ a10, a2 ] -> [ a2, a10 ]; alphabetical: sort tables in alphabetical order. For example: [ a10, a2 ] -> [ a10, a2 ].
get_all_tables str
Get all sub-tables including unconfigured tables. Do not set this variable to true if you configure sub-table in another resource, otherwise, conflicts and overwrite will occur. Options: [ false, true ]. false: Default value, do not get unconfigured tables; true: get all tables including unconfigured tables.
name Changes to this property will trigger replacement. str
Application group name.
popularity str
Application popularity filter (1 - 5, from least to most popular). Valid values: 1, 2, 3, 4, 5.
protocols str
Application protocol filter.
risks Sequence[GroupRiskArgs]
Risk, or impact, of allowing traffic from this application to occur (1 - 5; Low, Elevated, Medium, High, and Critical). The structure of risk block is documented below.
technology str
Application technology filter.
type str
Application group type.
vdomparam Changes to this property will trigger replacement. str
Specifies the vdom to which the resource will be applied when the FortiGate unit is running in VDOM mode. Only one vdom can be specified. If you want to inherit the vdom configuration of the provider, please do not set this parameter.
vendor str
Application vendor filter.
applications List<Property Map>
Application ID list. The structure of application block is documented below.
behavior String
Application behavior filter.
categories List<Property Map>
Application category ID list. The structure of category block is documented below.
comment String
Comment
dynamicSortSubtable String
Sort sub-tables, please do not set this parameter when configuring static sub-tables. Options: [ false, true, natural, alphabetical ]. false: Default value, do not sort tables; true/natural: sort tables in natural order. For example: [ a10, a2 ] -> [ a2, a10 ]; alphabetical: sort tables in alphabetical order. For example: [ a10, a2 ] -> [ a10, a2 ].
getAllTables String
Get all sub-tables including unconfigured tables. Do not set this variable to true if you configure sub-table in another resource, otherwise, conflicts and overwrite will occur. Options: [ false, true ]. false: Default value, do not get unconfigured tables; true: get all tables including unconfigured tables.
name Changes to this property will trigger replacement. String
Application group name.
popularity String
Application popularity filter (1 - 5, from least to most popular). Valid values: 1, 2, 3, 4, 5.
protocols String
Application protocol filter.
risks List<Property Map>
Risk, or impact, of allowing traffic from this application to occur (1 - 5; Low, Elevated, Medium, High, and Critical). The structure of risk block is documented below.
technology String
Application technology filter.
type String
Application group type.
vdomparam Changes to this property will trigger replacement. String
Specifies the vdom to which the resource will be applied when the FortiGate unit is running in VDOM mode. Only one vdom can be specified. If you want to inherit the vdom configuration of the provider, please do not set this parameter.
vendor String
Application vendor filter.

Supporting Types

GroupApplication
, GroupApplicationArgs

Id int
Application IDs.
Id int
Application IDs.
id Integer
Application IDs.
id number
Application IDs.
id int
Application IDs.
id Number
Application IDs.

GroupCategory
, GroupCategoryArgs

Id int
Category IDs.
Id int
Category IDs.
id Integer
Category IDs.
id number
Category IDs.
id int
Category IDs.
id Number
Category IDs.

GroupRisk
, GroupRiskArgs

Level int
Risk, or impact, of allowing traffic from this application to occur (1 - 5; Low, Elevated, Medium, High, and Critical).
Level int
Risk, or impact, of allowing traffic from this application to occur (1 - 5; Low, Elevated, Medium, High, and Critical).
level Integer
Risk, or impact, of allowing traffic from this application to occur (1 - 5; Low, Elevated, Medium, High, and Critical).
level number
Risk, or impact, of allowing traffic from this application to occur (1 - 5; Low, Elevated, Medium, High, and Critical).
level int
Risk, or impact, of allowing traffic from this application to occur (1 - 5; Low, Elevated, Medium, High, and Critical).
level Number
Risk, or impact, of allowing traffic from this application to occur (1 - 5; Low, Elevated, Medium, High, and Critical).

Import

Application Group can be imported using any of these accepted formats:

$ pulumi import fortios:application/group:Group labelname {{name}}
Copy

If you do not want to import arguments of block:

$ export “FORTIOS_IMPORT_TABLE”=“false”

$ pulumi import fortios:application/group:Group labelname {{name}}
Copy

$ unset “FORTIOS_IMPORT_TABLE”

To learn more about importing existing cloud resources, see Importing resources.

Package Details

Repository
fortios pulumiverse/pulumi-fortios
License
Apache-2.0
Notes
This Pulumi package is based on the fortios Terraform Provider.