fortimanager.ObjectSystemGeoipoverride
Explore with Pulumi AI
Configure geographical location mapping for IP address(es) to override mappings from FortiGuard.
The following variables have sub resource. Avoid using them together, otherwise conflicts and overwrites may occur.
ip6_range
:fortimanager.ObjectSystemGeoipoverrideIp6range
ip_range
:fortimanager.ObjectSystemGeoipoverrideIprange
Example Usage
import * as pulumi from "@pulumi/pulumi";
import * as fortimanager from "@pulumi/fortimanager";
const labelname = new fortimanager.ObjectSystemGeoipoverride("labelname", {});
import pulumi
import pulumi_fortimanager as fortimanager
labelname = fortimanager.ObjectSystemGeoipoverride("labelname")
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 {
_, err := fortimanager.NewObjectSystemGeoipoverride(ctx, "labelname", nil)
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 labelname = new Fortimanager.ObjectSystemGeoipoverride("labelname");
});
package generated_program;
import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.fortimanager.ObjectSystemGeoipoverride;
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 labelname = new ObjectSystemGeoipoverride("labelname");
}
}
resources:
labelname:
type: fortimanager:ObjectSystemGeoipoverride
Create ObjectSystemGeoipoverride Resource
Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.
Constructor syntax
new ObjectSystemGeoipoverride(name: string, args?: ObjectSystemGeoipoverrideArgs, opts?: CustomResourceOptions);
@overload
def ObjectSystemGeoipoverride(resource_name: str,
args: Optional[ObjectSystemGeoipoverrideArgs] = None,
opts: Optional[ResourceOptions] = None)
@overload
def ObjectSystemGeoipoverride(resource_name: str,
opts: Optional[ResourceOptions] = None,
adom: Optional[str] = None,
country_id: Optional[str] = None,
description: Optional[str] = None,
dynamic_sort_subtable: Optional[str] = None,
ip6_ranges: Optional[Sequence[ObjectSystemGeoipoverrideIp6RangeArgs]] = None,
ip_ranges: Optional[Sequence[ObjectSystemGeoipoverrideIpRangeArgs]] = None,
name: Optional[str] = None,
object_system_geoipoverride_id: Optional[str] = None,
scopetype: Optional[str] = None)
func NewObjectSystemGeoipoverride(ctx *Context, name string, args *ObjectSystemGeoipoverrideArgs, opts ...ResourceOption) (*ObjectSystemGeoipoverride, error)
public ObjectSystemGeoipoverride(string name, ObjectSystemGeoipoverrideArgs? args = null, CustomResourceOptions? opts = null)
public ObjectSystemGeoipoverride(String name, ObjectSystemGeoipoverrideArgs args)
public ObjectSystemGeoipoverride(String name, ObjectSystemGeoipoverrideArgs args, CustomResourceOptions options)
type: fortimanager:ObjectSystemGeoipoverride
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 ObjectSystemGeoipoverrideArgs
- 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 ObjectSystemGeoipoverrideArgs
- 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 ObjectSystemGeoipoverrideArgs
- The arguments to resource properties.
- opts ResourceOption
- Bag of options to control resource's behavior.
- name string
- The unique name of the resource.
- args ObjectSystemGeoipoverrideArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- name String
- The unique name of the resource.
- args ObjectSystemGeoipoverrideArgs
- 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 objectSystemGeoipoverrideResource = new Fortimanager.ObjectSystemGeoipoverride("objectSystemGeoipoverrideResource", new()
{
Adom = "string",
CountryId = "string",
Description = "string",
DynamicSortSubtable = "string",
Ip6Ranges = new[]
{
new Fortimanager.Inputs.ObjectSystemGeoipoverrideIp6RangeArgs
{
EndIp = "string",
Id = 0,
StartIp = "string",
},
},
IpRanges = new[]
{
new Fortimanager.Inputs.ObjectSystemGeoipoverrideIpRangeArgs
{
EndIp = "string",
Id = 0,
StartIp = "string",
},
},
Name = "string",
ObjectSystemGeoipoverrideId = "string",
Scopetype = "string",
});
example, err := fortimanager.NewObjectSystemGeoipoverride(ctx, "objectSystemGeoipoverrideResource", &fortimanager.ObjectSystemGeoipoverrideArgs{
Adom: pulumi.String("string"),
CountryId: pulumi.String("string"),
Description: pulumi.String("string"),
DynamicSortSubtable: pulumi.String("string"),
Ip6Ranges: .ObjectSystemGeoipoverrideIp6RangeTypeArray{
&.ObjectSystemGeoipoverrideIp6RangeTypeArgs{
EndIp: pulumi.String("string"),
Id: pulumi.Float64(0),
StartIp: pulumi.String("string"),
},
},
IpRanges: .ObjectSystemGeoipoverrideIpRangeTypeArray{
&.ObjectSystemGeoipoverrideIpRangeTypeArgs{
EndIp: pulumi.String("string"),
Id: pulumi.Float64(0),
StartIp: pulumi.String("string"),
},
},
Name: pulumi.String("string"),
ObjectSystemGeoipoverrideId: pulumi.String("string"),
Scopetype: pulumi.String("string"),
})
var objectSystemGeoipoverrideResource = new ObjectSystemGeoipoverride("objectSystemGeoipoverrideResource", ObjectSystemGeoipoverrideArgs.builder()
.adom("string")
.countryId("string")
.description("string")
.dynamicSortSubtable("string")
.ip6Ranges(ObjectSystemGeoipoverrideIp6RangeArgs.builder()
.endIp("string")
.id(0)
.startIp("string")
.build())
.ipRanges(ObjectSystemGeoipoverrideIpRangeArgs.builder()
.endIp("string")
.id(0)
.startIp("string")
.build())
.name("string")
.objectSystemGeoipoverrideId("string")
.scopetype("string")
.build());
object_system_geoipoverride_resource = fortimanager.ObjectSystemGeoipoverride("objectSystemGeoipoverrideResource",
adom="string",
country_id="string",
description="string",
dynamic_sort_subtable="string",
ip6_ranges=[{
"end_ip": "string",
"id": 0,
"start_ip": "string",
}],
ip_ranges=[{
"end_ip": "string",
"id": 0,
"start_ip": "string",
}],
name="string",
object_system_geoipoverride_id="string",
scopetype="string")
const objectSystemGeoipoverrideResource = new fortimanager.ObjectSystemGeoipoverride("objectSystemGeoipoverrideResource", {
adom: "string",
countryId: "string",
description: "string",
dynamicSortSubtable: "string",
ip6Ranges: [{
endIp: "string",
id: 0,
startIp: "string",
}],
ipRanges: [{
endIp: "string",
id: 0,
startIp: "string",
}],
name: "string",
objectSystemGeoipoverrideId: "string",
scopetype: "string",
});
type: fortimanager:ObjectSystemGeoipoverride
properties:
adom: string
countryId: string
description: string
dynamicSortSubtable: string
ip6Ranges:
- endIp: string
id: 0
startIp: string
ipRanges:
- endIp: string
id: 0
startIp: string
name: string
objectSystemGeoipoverrideId: string
scopetype: string
ObjectSystemGeoipoverride 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 ObjectSystemGeoipoverride 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. - Country
Id string - Two character Country ID code.
- Description string
- Description.
- 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.
- Ip6Ranges
List<Object
System Geoipoverride Ip6Range> - Ip6-Range. The structure of
ip6_range
block is documented below. - Ip
Ranges List<ObjectSystem Geoipoverride Ip Range> - Ip-Range. The structure of
ip_range
block is documented below. - Name string
- Location name.
- Object
System stringGeoipoverride 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
.
- Adom string
- Adom. This value is valid only when the
scopetype
isadom
, otherwise the value of adom in the provider will be inherited. - Country
Id string - Two character Country ID code.
- Description string
- Description.
- 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.
- Ip6Ranges
[]Object
System Geoipoverride Ip6Range Type Args - Ip6-Range. The structure of
ip6_range
block is documented below. - Ip
Ranges []ObjectSystem Geoipoverride Ip Range Type Args - Ip-Range. The structure of
ip_range
block is documented below. - Name string
- Location name.
- Object
System stringGeoipoverride 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
.
- adom String
- Adom. This value is valid only when the
scopetype
isadom
, otherwise the value of adom in the provider will be inherited. - country
Id String - Two character Country ID code.
- description String
- Description.
- 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.
- ip6Ranges
List<Object
System Geoipoverride Ip6Range> - Ip6-Range. The structure of
ip6_range
block is documented below. - ip
Ranges List<ObjectSystem Geoipoverride Ip Range> - Ip-Range. The structure of
ip_range
block is documented below. - name String
- Location name.
- object
System StringGeoipoverride 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
.
- adom string
- Adom. This value is valid only when the
scopetype
isadom
, otherwise the value of adom in the provider will be inherited. - country
Id string - Two character Country ID code.
- description string
- Description.
- 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.
- ip6Ranges
Object
System Geoipoverride Ip6Range[] - Ip6-Range. The structure of
ip6_range
block is documented below. - ip
Ranges ObjectSystem Geoipoverride Ip Range[] - Ip-Range. The structure of
ip_range
block is documented below. - name string
- Location name.
- object
System stringGeoipoverride 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
.
- adom str
- Adom. This value is valid only when the
scopetype
isadom
, otherwise the value of adom in the provider will be inherited. - country_
id str - Two character Country ID code.
- description str
- Description.
- 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.
- ip6_
ranges Sequence[ObjectSystem Geoipoverride Ip6Range Args] - Ip6-Range. The structure of
ip6_range
block is documented below. - ip_
ranges Sequence[ObjectSystem Geoipoverride Ip Range Args] - Ip-Range. The structure of
ip_range
block is documented below. - name str
- Location name.
- object_
system_ strgeoipoverride_ 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
.
- adom String
- Adom. This value is valid only when the
scopetype
isadom
, otherwise the value of adom in the provider will be inherited. - country
Id String - Two character Country ID code.
- description String
- Description.
- 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.
- ip6Ranges List<Property Map>
- Ip6-Range. The structure of
ip6_range
block is documented below. - ip
Ranges List<Property Map> - Ip-Range. The structure of
ip_range
block is documented below. - name String
- Location name.
- object
System StringGeoipoverride 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 ObjectSystemGeoipoverride 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 ObjectSystemGeoipoverride Resource
Get an existing ObjectSystemGeoipoverride 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?: ObjectSystemGeoipoverrideState, opts?: CustomResourceOptions): ObjectSystemGeoipoverride
@staticmethod
def get(resource_name: str,
id: str,
opts: Optional[ResourceOptions] = None,
adom: Optional[str] = None,
country_id: Optional[str] = None,
description: Optional[str] = None,
dynamic_sort_subtable: Optional[str] = None,
ip6_ranges: Optional[Sequence[ObjectSystemGeoipoverrideIp6RangeArgs]] = None,
ip_ranges: Optional[Sequence[ObjectSystemGeoipoverrideIpRangeArgs]] = None,
name: Optional[str] = None,
object_system_geoipoverride_id: Optional[str] = None,
scopetype: Optional[str] = None) -> ObjectSystemGeoipoverride
func GetObjectSystemGeoipoverride(ctx *Context, name string, id IDInput, state *ObjectSystemGeoipoverrideState, opts ...ResourceOption) (*ObjectSystemGeoipoverride, error)
public static ObjectSystemGeoipoverride Get(string name, Input<string> id, ObjectSystemGeoipoverrideState? state, CustomResourceOptions? opts = null)
public static ObjectSystemGeoipoverride get(String name, Output<String> id, ObjectSystemGeoipoverrideState state, CustomResourceOptions options)
resources: _: type: fortimanager:ObjectSystemGeoipoverride 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. - Country
Id string - Two character Country ID code.
- Description string
- Description.
- 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.
- Ip6Ranges
List<Object
System Geoipoverride Ip6Range> - Ip6-Range. The structure of
ip6_range
block is documented below. - Ip
Ranges List<ObjectSystem Geoipoverride Ip Range> - Ip-Range. The structure of
ip_range
block is documented below. - Name string
- Location name.
- Object
System stringGeoipoverride 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
.
- Adom string
- Adom. This value is valid only when the
scopetype
isadom
, otherwise the value of adom in the provider will be inherited. - Country
Id string - Two character Country ID code.
- Description string
- Description.
- 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.
- Ip6Ranges
[]Object
System Geoipoverride Ip6Range Type Args - Ip6-Range. The structure of
ip6_range
block is documented below. - Ip
Ranges []ObjectSystem Geoipoverride Ip Range Type Args - Ip-Range. The structure of
ip_range
block is documented below. - Name string
- Location name.
- Object
System stringGeoipoverride 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
.
- adom String
- Adom. This value is valid only when the
scopetype
isadom
, otherwise the value of adom in the provider will be inherited. - country
Id String - Two character Country ID code.
- description String
- Description.
- 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.
- ip6Ranges
List<Object
System Geoipoverride Ip6Range> - Ip6-Range. The structure of
ip6_range
block is documented below. - ip
Ranges List<ObjectSystem Geoipoverride Ip Range> - Ip-Range. The structure of
ip_range
block is documented below. - name String
- Location name.
- object
System StringGeoipoverride 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
.
- adom string
- Adom. This value is valid only when the
scopetype
isadom
, otherwise the value of adom in the provider will be inherited. - country
Id string - Two character Country ID code.
- description string
- Description.
- 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.
- ip6Ranges
Object
System Geoipoverride Ip6Range[] - Ip6-Range. The structure of
ip6_range
block is documented below. - ip
Ranges ObjectSystem Geoipoverride Ip Range[] - Ip-Range. The structure of
ip_range
block is documented below. - name string
- Location name.
- object
System stringGeoipoverride 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
.
- adom str
- Adom. This value is valid only when the
scopetype
isadom
, otherwise the value of adom in the provider will be inherited. - country_
id str - Two character Country ID code.
- description str
- Description.
- 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.
- ip6_
ranges Sequence[ObjectSystem Geoipoverride Ip6Range Args] - Ip6-Range. The structure of
ip6_range
block is documented below. - ip_
ranges Sequence[ObjectSystem Geoipoverride Ip Range Args] - Ip-Range. The structure of
ip_range
block is documented below. - name str
- Location name.
- object_
system_ strgeoipoverride_ 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
.
- adom String
- Adom. This value is valid only when the
scopetype
isadom
, otherwise the value of adom in the provider will be inherited. - country
Id String - Two character Country ID code.
- description String
- Description.
- 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.
- ip6Ranges List<Property Map>
- Ip6-Range. The structure of
ip6_range
block is documented below. - ip
Ranges List<Property Map> - Ip-Range. The structure of
ip_range
block is documented below. - name String
- Location name.
- object
System StringGeoipoverride 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
.
Supporting Types
ObjectSystemGeoipoverrideIp6Range, ObjectSystemGeoipoverrideIp6RangeArgs
ObjectSystemGeoipoverrideIpRange, ObjectSystemGeoipoverrideIpRangeArgs
Import
ObjectSystem GeoipOverride can be imported using any of these accepted formats:
$ export “FORTIMANAGER_IMPORT_TABLE”=“true”
$ pulumi import fortimanager:index/objectSystemGeoipoverride:ObjectSystemGeoipoverride 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.