fortimanager.ObjectFirewallWildcardfqdnGroup
Explore with Pulumi AI
Config global Wildcard FQDN address groups.
Example Usage
import * as pulumi from "@pulumi/pulumi";
import * as fortimanager from "@pulumi/fortimanager";
const trnameObjectFirewallWildcardfqdnCustom = new fortimanager.ObjectFirewallWildcardfqdnCustom("trnameObjectFirewallWildcardfqdnCustom", {
color: 1,
comment: "terraform-comment",
});
const trnameObjectFirewallWildcardfqdnGroup = new fortimanager.ObjectFirewallWildcardfqdnGroup("trnameObjectFirewallWildcardfqdnGroup", {
color: 1,
comment: "terraform-comment",
members: ["terraform-tefv"],
}, {
dependsOn: [trnameObjectFirewallWildcardfqdnCustom],
});
import pulumi
import pulumi_fortimanager as fortimanager
trname_object_firewall_wildcardfqdn_custom = fortimanager.ObjectFirewallWildcardfqdnCustom("trnameObjectFirewallWildcardfqdnCustom",
color=1,
comment="terraform-comment")
trname_object_firewall_wildcardfqdn_group = fortimanager.ObjectFirewallWildcardfqdnGroup("trnameObjectFirewallWildcardfqdnGroup",
color=1,
comment="terraform-comment",
members=["terraform-tefv"],
opts = pulumi.ResourceOptions(depends_on=[trname_object_firewall_wildcardfqdn_custom]))
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 {
trnameObjectFirewallWildcardfqdnCustom, err := fortimanager.NewObjectFirewallWildcardfqdnCustom(ctx, "trnameObjectFirewallWildcardfqdnCustom", &fortimanager.ObjectFirewallWildcardfqdnCustomArgs{
Color: pulumi.Float64(1),
Comment: pulumi.String("terraform-comment"),
})
if err != nil {
return err
}
_, err = fortimanager.NewObjectFirewallWildcardfqdnGroup(ctx, "trnameObjectFirewallWildcardfqdnGroup", &fortimanager.ObjectFirewallWildcardfqdnGroupArgs{
Color: pulumi.Float64(1),
Comment: pulumi.String("terraform-comment"),
Members: pulumi.StringArray{
pulumi.String("terraform-tefv"),
},
}, pulumi.DependsOn([]pulumi.Resource{
trnameObjectFirewallWildcardfqdnCustom,
}))
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 trnameObjectFirewallWildcardfqdnCustom = new Fortimanager.ObjectFirewallWildcardfqdnCustom("trnameObjectFirewallWildcardfqdnCustom", new()
{
Color = 1,
Comment = "terraform-comment",
});
var trnameObjectFirewallWildcardfqdnGroup = new Fortimanager.ObjectFirewallWildcardfqdnGroup("trnameObjectFirewallWildcardfqdnGroup", new()
{
Color = 1,
Comment = "terraform-comment",
Members = new[]
{
"terraform-tefv",
},
}, new CustomResourceOptions
{
DependsOn =
{
trnameObjectFirewallWildcardfqdnCustom,
},
});
});
package generated_program;
import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.fortimanager.ObjectFirewallWildcardfqdnCustom;
import com.pulumi.fortimanager.ObjectFirewallWildcardfqdnCustomArgs;
import com.pulumi.fortimanager.ObjectFirewallWildcardfqdnGroup;
import com.pulumi.fortimanager.ObjectFirewallWildcardfqdnGroupArgs;
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 trnameObjectFirewallWildcardfqdnCustom = new ObjectFirewallWildcardfqdnCustom("trnameObjectFirewallWildcardfqdnCustom", ObjectFirewallWildcardfqdnCustomArgs.builder()
.color(1)
.comment("terraform-comment")
.build());
var trnameObjectFirewallWildcardfqdnGroup = new ObjectFirewallWildcardfqdnGroup("trnameObjectFirewallWildcardfqdnGroup", ObjectFirewallWildcardfqdnGroupArgs.builder()
.color(1)
.comment("terraform-comment")
.members("terraform-tefv")
.build(), CustomResourceOptions.builder()
.dependsOn(trnameObjectFirewallWildcardfqdnCustom)
.build());
}
}
resources:
trnameObjectFirewallWildcardfqdnCustom:
type: fortimanager:ObjectFirewallWildcardfqdnCustom
properties:
color: 1
comment: terraform-comment
trnameObjectFirewallWildcardfqdnGroup:
type: fortimanager:ObjectFirewallWildcardfqdnGroup
properties:
color: 1
comment: terraform-comment
members:
- terraform-tefv
options:
dependsOn:
- ${trnameObjectFirewallWildcardfqdnCustom}
Create ObjectFirewallWildcardfqdnGroup Resource
Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.
Constructor syntax
new ObjectFirewallWildcardfqdnGroup(name: string, args?: ObjectFirewallWildcardfqdnGroupArgs, opts?: CustomResourceOptions);
@overload
def ObjectFirewallWildcardfqdnGroup(resource_name: str,
args: Optional[ObjectFirewallWildcardfqdnGroupArgs] = None,
opts: Optional[ResourceOptions] = None)
@overload
def ObjectFirewallWildcardfqdnGroup(resource_name: str,
opts: Optional[ResourceOptions] = None,
adom: Optional[str] = None,
color: Optional[float] = None,
comment: Optional[str] = None,
members: Optional[Sequence[str]] = None,
name: Optional[str] = None,
object_firewall_wildcardfqdn_group_id: Optional[str] = None,
scopetype: Optional[str] = None,
uuid: Optional[str] = None,
visibility: Optional[str] = None)
func NewObjectFirewallWildcardfqdnGroup(ctx *Context, name string, args *ObjectFirewallWildcardfqdnGroupArgs, opts ...ResourceOption) (*ObjectFirewallWildcardfqdnGroup, error)
public ObjectFirewallWildcardfqdnGroup(string name, ObjectFirewallWildcardfqdnGroupArgs? args = null, CustomResourceOptions? opts = null)
public ObjectFirewallWildcardfqdnGroup(String name, ObjectFirewallWildcardfqdnGroupArgs args)
public ObjectFirewallWildcardfqdnGroup(String name, ObjectFirewallWildcardfqdnGroupArgs args, CustomResourceOptions options)
type: fortimanager:ObjectFirewallWildcardfqdnGroup
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 ObjectFirewallWildcardfqdnGroupArgs
- 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 ObjectFirewallWildcardfqdnGroupArgs
- 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 ObjectFirewallWildcardfqdnGroupArgs
- The arguments to resource properties.
- opts ResourceOption
- Bag of options to control resource's behavior.
- name string
- The unique name of the resource.
- args ObjectFirewallWildcardfqdnGroupArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- name String
- The unique name of the resource.
- args ObjectFirewallWildcardfqdnGroupArgs
- 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 objectFirewallWildcardfqdnGroupResource = new Fortimanager.ObjectFirewallWildcardfqdnGroup("objectFirewallWildcardfqdnGroupResource", new()
{
Adom = "string",
Color = 0,
Comment = "string",
Members = new[]
{
"string",
},
Name = "string",
ObjectFirewallWildcardfqdnGroupId = "string",
Scopetype = "string",
Uuid = "string",
Visibility = "string",
});
example, err := fortimanager.NewObjectFirewallWildcardfqdnGroup(ctx, "objectFirewallWildcardfqdnGroupResource", &fortimanager.ObjectFirewallWildcardfqdnGroupArgs{
Adom: pulumi.String("string"),
Color: pulumi.Float64(0),
Comment: pulumi.String("string"),
Members: pulumi.StringArray{
pulumi.String("string"),
},
Name: pulumi.String("string"),
ObjectFirewallWildcardfqdnGroupId: pulumi.String("string"),
Scopetype: pulumi.String("string"),
Uuid: pulumi.String("string"),
Visibility: pulumi.String("string"),
})
var objectFirewallWildcardfqdnGroupResource = new ObjectFirewallWildcardfqdnGroup("objectFirewallWildcardfqdnGroupResource", ObjectFirewallWildcardfqdnGroupArgs.builder()
.adom("string")
.color(0)
.comment("string")
.members("string")
.name("string")
.objectFirewallWildcardfqdnGroupId("string")
.scopetype("string")
.uuid("string")
.visibility("string")
.build());
object_firewall_wildcardfqdn_group_resource = fortimanager.ObjectFirewallWildcardfqdnGroup("objectFirewallWildcardfqdnGroupResource",
adom="string",
color=0,
comment="string",
members=["string"],
name="string",
object_firewall_wildcardfqdn_group_id="string",
scopetype="string",
uuid="string",
visibility="string")
const objectFirewallWildcardfqdnGroupResource = new fortimanager.ObjectFirewallWildcardfqdnGroup("objectFirewallWildcardfqdnGroupResource", {
adom: "string",
color: 0,
comment: "string",
members: ["string"],
name: "string",
objectFirewallWildcardfqdnGroupId: "string",
scopetype: "string",
uuid: "string",
visibility: "string",
});
type: fortimanager:ObjectFirewallWildcardfqdnGroup
properties:
adom: string
color: 0
comment: string
members:
- string
name: string
objectFirewallWildcardfqdnGroupId: string
scopetype: string
uuid: string
visibility: string
ObjectFirewallWildcardfqdnGroup 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 ObjectFirewallWildcardfqdnGroup resource accepts the following input properties:
- Adom string
- Adom. This value is valid only when the
scopetype
isadom
, otherwise the value of adom in the provider will be inherited. - Color double
- GUI icon color.
- Comment string
- Comment.
- Members List<string>
- Address group members.
- Name string
- Address group name.
- Object
Firewall stringWildcardfqdn Group 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
. - Uuid string
- Universally Unique Identifier (UUID; automatically assigned but can be manually reset).
- Visibility string
- Enable/disable address visibility. Valid values:
disable
,enable
.
- Adom string
- Adom. This value is valid only when the
scopetype
isadom
, otherwise the value of adom in the provider will be inherited. - Color float64
- GUI icon color.
- Comment string
- Comment.
- Members []string
- Address group members.
- Name string
- Address group name.
- Object
Firewall stringWildcardfqdn Group 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
. - Uuid string
- Universally Unique Identifier (UUID; automatically assigned but can be manually reset).
- Visibility string
- Enable/disable address visibility. Valid values:
disable
,enable
.
- adom String
- Adom. This value is valid only when the
scopetype
isadom
, otherwise the value of adom in the provider will be inherited. - color Double
- GUI icon color.
- comment String
- Comment.
- members List<String>
- Address group members.
- name String
- Address group name.
- object
Firewall StringWildcardfqdn Group 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
. - uuid String
- Universally Unique Identifier (UUID; automatically assigned but can be manually reset).
- visibility String
- Enable/disable address visibility. Valid values:
disable
,enable
.
- adom string
- Adom. This value is valid only when the
scopetype
isadom
, otherwise the value of adom in the provider will be inherited. - color number
- GUI icon color.
- comment string
- Comment.
- members string[]
- Address group members.
- name string
- Address group name.
- object
Firewall stringWildcardfqdn Group 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
. - uuid string
- Universally Unique Identifier (UUID; automatically assigned but can be manually reset).
- visibility string
- Enable/disable address visibility. Valid values:
disable
,enable
.
- adom str
- Adom. This value is valid only when the
scopetype
isadom
, otherwise the value of adom in the provider will be inherited. - color float
- GUI icon color.
- comment str
- Comment.
- members Sequence[str]
- Address group members.
- name str
- Address group name.
- object_
firewall_ strwildcardfqdn_ group_ 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
. - uuid str
- Universally Unique Identifier (UUID; automatically assigned but can be manually reset).
- visibility str
- Enable/disable address visibility. Valid values:
disable
,enable
.
- adom String
- Adom. This value is valid only when the
scopetype
isadom
, otherwise the value of adom in the provider will be inherited. - color Number
- GUI icon color.
- comment String
- Comment.
- members List<String>
- Address group members.
- name String
- Address group name.
- object
Firewall StringWildcardfqdn Group 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
. - uuid String
- Universally Unique Identifier (UUID; automatically assigned but can be manually reset).
- visibility String
- Enable/disable address visibility. Valid values:
disable
,enable
.
Outputs
All input properties are implicitly available as output properties. Additionally, the ObjectFirewallWildcardfqdnGroup 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 ObjectFirewallWildcardfqdnGroup Resource
Get an existing ObjectFirewallWildcardfqdnGroup 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?: ObjectFirewallWildcardfqdnGroupState, opts?: CustomResourceOptions): ObjectFirewallWildcardfqdnGroup
@staticmethod
def get(resource_name: str,
id: str,
opts: Optional[ResourceOptions] = None,
adom: Optional[str] = None,
color: Optional[float] = None,
comment: Optional[str] = None,
members: Optional[Sequence[str]] = None,
name: Optional[str] = None,
object_firewall_wildcardfqdn_group_id: Optional[str] = None,
scopetype: Optional[str] = None,
uuid: Optional[str] = None,
visibility: Optional[str] = None) -> ObjectFirewallWildcardfqdnGroup
func GetObjectFirewallWildcardfqdnGroup(ctx *Context, name string, id IDInput, state *ObjectFirewallWildcardfqdnGroupState, opts ...ResourceOption) (*ObjectFirewallWildcardfqdnGroup, error)
public static ObjectFirewallWildcardfqdnGroup Get(string name, Input<string> id, ObjectFirewallWildcardfqdnGroupState? state, CustomResourceOptions? opts = null)
public static ObjectFirewallWildcardfqdnGroup get(String name, Output<String> id, ObjectFirewallWildcardfqdnGroupState state, CustomResourceOptions options)
resources: _: type: fortimanager:ObjectFirewallWildcardfqdnGroup 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. - Color double
- GUI icon color.
- Comment string
- Comment.
- Members List<string>
- Address group members.
- Name string
- Address group name.
- Object
Firewall stringWildcardfqdn Group 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
. - Uuid string
- Universally Unique Identifier (UUID; automatically assigned but can be manually reset).
- Visibility string
- Enable/disable address visibility. Valid values:
disable
,enable
.
- Adom string
- Adom. This value is valid only when the
scopetype
isadom
, otherwise the value of adom in the provider will be inherited. - Color float64
- GUI icon color.
- Comment string
- Comment.
- Members []string
- Address group members.
- Name string
- Address group name.
- Object
Firewall stringWildcardfqdn Group 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
. - Uuid string
- Universally Unique Identifier (UUID; automatically assigned but can be manually reset).
- Visibility string
- Enable/disable address visibility. Valid values:
disable
,enable
.
- adom String
- Adom. This value is valid only when the
scopetype
isadom
, otherwise the value of adom in the provider will be inherited. - color Double
- GUI icon color.
- comment String
- Comment.
- members List<String>
- Address group members.
- name String
- Address group name.
- object
Firewall StringWildcardfqdn Group 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
. - uuid String
- Universally Unique Identifier (UUID; automatically assigned but can be manually reset).
- visibility String
- Enable/disable address visibility. Valid values:
disable
,enable
.
- adom string
- Adom. This value is valid only when the
scopetype
isadom
, otherwise the value of adom in the provider will be inherited. - color number
- GUI icon color.
- comment string
- Comment.
- members string[]
- Address group members.
- name string
- Address group name.
- object
Firewall stringWildcardfqdn Group 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
. - uuid string
- Universally Unique Identifier (UUID; automatically assigned but can be manually reset).
- visibility string
- Enable/disable address visibility. Valid values:
disable
,enable
.
- adom str
- Adom. This value is valid only when the
scopetype
isadom
, otherwise the value of adom in the provider will be inherited. - color float
- GUI icon color.
- comment str
- Comment.
- members Sequence[str]
- Address group members.
- name str
- Address group name.
- object_
firewall_ strwildcardfqdn_ group_ 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
. - uuid str
- Universally Unique Identifier (UUID; automatically assigned but can be manually reset).
- visibility str
- Enable/disable address visibility. Valid values:
disable
,enable
.
- adom String
- Adom. This value is valid only when the
scopetype
isadom
, otherwise the value of adom in the provider will be inherited. - color Number
- GUI icon color.
- comment String
- Comment.
- members List<String>
- Address group members.
- name String
- Address group name.
- object
Firewall StringWildcardfqdn Group 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
. - uuid String
- Universally Unique Identifier (UUID; automatically assigned but can be manually reset).
- visibility String
- Enable/disable address visibility. Valid values:
disable
,enable
.
Import
ObjectFirewall WildcardFqdnGroup can be imported using any of these accepted formats:
$ export “FORTIMANAGER_IMPORT_TABLE”=“true”
$ pulumi import fortimanager:index/objectFirewallWildcardfqdnGroup:ObjectFirewallWildcardfqdnGroup 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.