fortimanager.SystempSystemCentralmanagementServerlist
Explore with Pulumi AI
Additional severs that the FortiGate can use for updates (for AV, IPS, updates) and ratings (for web filter and antispam ratings) servers.
This resource is a sub resource for variable
server_list
of resourcefortimanager.SystempSystemCentralmanagement
. Conflict and overwrite may occur if use both of them.
Example Usage
import * as pulumi from "@pulumi/pulumi";
import * as fortimanager from "@pulumi/fortimanager";
const trname = new fortimanager.SystempSystemCentralmanagementServerlist("trname", {
devprof: "default",
fosid: 5,
serverAddress: "10.160.2.8",
});
import pulumi
import pulumi_fortimanager as fortimanager
trname = fortimanager.SystempSystemCentralmanagementServerlist("trname",
devprof="default",
fosid=5,
server_address="10.160.2.8")
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.NewSystempSystemCentralmanagementServerlist(ctx, "trname", &fortimanager.SystempSystemCentralmanagementServerlistArgs{
Devprof: pulumi.String("default"),
Fosid: pulumi.Float64(5),
ServerAddress: pulumi.String("10.160.2.8"),
})
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 trname = new Fortimanager.SystempSystemCentralmanagementServerlist("trname", new()
{
Devprof = "default",
Fosid = 5,
ServerAddress = "10.160.2.8",
});
});
package generated_program;
import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.fortimanager.SystempSystemCentralmanagementServerlist;
import com.pulumi.fortimanager.SystempSystemCentralmanagementServerlistArgs;
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 SystempSystemCentralmanagementServerlist("trname", SystempSystemCentralmanagementServerlistArgs.builder()
.devprof("default")
.fosid(5)
.serverAddress("10.160.2.8")
.build());
}
}
resources:
trname:
type: fortimanager:SystempSystemCentralmanagementServerlist
properties:
devprof: default
fosid: 5
serverAddress: 10.160.2.8
Create SystempSystemCentralmanagementServerlist Resource
Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.
Constructor syntax
new SystempSystemCentralmanagementServerlist(name: string, args: SystempSystemCentralmanagementServerlistArgs, opts?: CustomResourceOptions);
@overload
def SystempSystemCentralmanagementServerlist(resource_name: str,
args: SystempSystemCentralmanagementServerlistArgs,
opts: Optional[ResourceOptions] = None)
@overload
def SystempSystemCentralmanagementServerlist(resource_name: str,
opts: Optional[ResourceOptions] = None,
devprof: Optional[str] = None,
addr_type: Optional[str] = None,
adom: Optional[str] = None,
fosid: Optional[float] = None,
fqdn: Optional[str] = None,
scopetype: Optional[str] = None,
server_address: Optional[str] = None,
server_address6: Optional[str] = None,
server_types: Optional[Sequence[str]] = None,
systemp_system_centralmanagement_serverlist_id: Optional[str] = None)
func NewSystempSystemCentralmanagementServerlist(ctx *Context, name string, args SystempSystemCentralmanagementServerlistArgs, opts ...ResourceOption) (*SystempSystemCentralmanagementServerlist, error)
public SystempSystemCentralmanagementServerlist(string name, SystempSystemCentralmanagementServerlistArgs args, CustomResourceOptions? opts = null)
public SystempSystemCentralmanagementServerlist(String name, SystempSystemCentralmanagementServerlistArgs args)
public SystempSystemCentralmanagementServerlist(String name, SystempSystemCentralmanagementServerlistArgs args, CustomResourceOptions options)
type: fortimanager:SystempSystemCentralmanagementServerlist
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 SystempSystemCentralmanagementServerlistArgs
- 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 SystempSystemCentralmanagementServerlistArgs
- 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 SystempSystemCentralmanagementServerlistArgs
- The arguments to resource properties.
- opts ResourceOption
- Bag of options to control resource's behavior.
- name string
- The unique name of the resource.
- args SystempSystemCentralmanagementServerlistArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- name String
- The unique name of the resource.
- args SystempSystemCentralmanagementServerlistArgs
- 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 systempSystemCentralmanagementServerlistResource = new Fortimanager.SystempSystemCentralmanagementServerlist("systempSystemCentralmanagementServerlistResource", new()
{
Devprof = "string",
AddrType = "string",
Adom = "string",
Fosid = 0,
Fqdn = "string",
Scopetype = "string",
ServerAddress = "string",
ServerAddress6 = "string",
ServerTypes = new[]
{
"string",
},
SystempSystemCentralmanagementServerlistId = "string",
});
example, err := fortimanager.NewSystempSystemCentralmanagementServerlist(ctx, "systempSystemCentralmanagementServerlistResource", &fortimanager.SystempSystemCentralmanagementServerlistArgs{
Devprof: pulumi.String("string"),
AddrType: pulumi.String("string"),
Adom: pulumi.String("string"),
Fosid: pulumi.Float64(0),
Fqdn: pulumi.String("string"),
Scopetype: pulumi.String("string"),
ServerAddress: pulumi.String("string"),
ServerAddress6: pulumi.String("string"),
ServerTypes: pulumi.StringArray{
pulumi.String("string"),
},
SystempSystemCentralmanagementServerlistId: pulumi.String("string"),
})
var systempSystemCentralmanagementServerlistResource = new SystempSystemCentralmanagementServerlist("systempSystemCentralmanagementServerlistResource", SystempSystemCentralmanagementServerlistArgs.builder()
.devprof("string")
.addrType("string")
.adom("string")
.fosid(0)
.fqdn("string")
.scopetype("string")
.serverAddress("string")
.serverAddress6("string")
.serverTypes("string")
.systempSystemCentralmanagementServerlistId("string")
.build());
systemp_system_centralmanagement_serverlist_resource = fortimanager.SystempSystemCentralmanagementServerlist("systempSystemCentralmanagementServerlistResource",
devprof="string",
addr_type="string",
adom="string",
fosid=0,
fqdn="string",
scopetype="string",
server_address="string",
server_address6="string",
server_types=["string"],
systemp_system_centralmanagement_serverlist_id="string")
const systempSystemCentralmanagementServerlistResource = new fortimanager.SystempSystemCentralmanagementServerlist("systempSystemCentralmanagementServerlistResource", {
devprof: "string",
addrType: "string",
adom: "string",
fosid: 0,
fqdn: "string",
scopetype: "string",
serverAddress: "string",
serverAddress6: "string",
serverTypes: ["string"],
systempSystemCentralmanagementServerlistId: "string",
});
type: fortimanager:SystempSystemCentralmanagementServerlist
properties:
addrType: string
adom: string
devprof: string
fosid: 0
fqdn: string
scopetype: string
serverAddress: string
serverAddress6: string
serverTypes:
- string
systempSystemCentralmanagementServerlistId: string
SystempSystemCentralmanagementServerlist 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 SystempSystemCentralmanagementServerlist resource accepts the following input properties:
- Devprof string
- Devprof.
- Addr
Type string - Indicate whether the FortiGate communicates with the override server using an IPv4 address, an IPv6 address or a FQDN. Valid values:
fqdn
,ipv4
,ipv6
. - Adom string
- Adom. This value is valid only when the
scopetype
isadom
, otherwise the value of adom in the provider will be inherited. - Fosid double
- ID.
- Fqdn string
- FQDN address of override server.
- Scopetype string
- The scope of application of the resource. Valid values:
inherit
,adom
. Theinherit
means that the scopetype of the provider will be inherited, and adom will also be inherited. The default value isinherit
. - Server
Address string - IPv4 address of override server.
- Server
Address6 string - IPv6 address of override server.
- Server
Types List<string> - FortiGuard service type. Valid values:
update
,rating
. - Systemp
System stringCentralmanagement Serverlist Id - an identifier for the resource with format {{fosid}}.
- Devprof string
- Devprof.
- Addr
Type string - Indicate whether the FortiGate communicates with the override server using an IPv4 address, an IPv6 address or a FQDN. Valid values:
fqdn
,ipv4
,ipv6
. - Adom string
- Adom. This value is valid only when the
scopetype
isadom
, otherwise the value of adom in the provider will be inherited. - Fosid float64
- ID.
- Fqdn string
- FQDN address of override server.
- Scopetype string
- The scope of application of the resource. Valid values:
inherit
,adom
. Theinherit
means that the scopetype of the provider will be inherited, and adom will also be inherited. The default value isinherit
. - Server
Address string - IPv4 address of override server.
- Server
Address6 string - IPv6 address of override server.
- Server
Types []string - FortiGuard service type. Valid values:
update
,rating
. - Systemp
System stringCentralmanagement Serverlist Id - an identifier for the resource with format {{fosid}}.
- devprof String
- Devprof.
- addr
Type String - Indicate whether the FortiGate communicates with the override server using an IPv4 address, an IPv6 address or a FQDN. Valid values:
fqdn
,ipv4
,ipv6
. - adom String
- Adom. This value is valid only when the
scopetype
isadom
, otherwise the value of adom in the provider will be inherited. - fosid Double
- ID.
- fqdn String
- FQDN address of override server.
- scopetype String
- The scope of application of the resource. Valid values:
inherit
,adom
. Theinherit
means that the scopetype of the provider will be inherited, and adom will also be inherited. The default value isinherit
. - server
Address String - IPv4 address of override server.
- server
Address6 String - IPv6 address of override server.
- server
Types List<String> - FortiGuard service type. Valid values:
update
,rating
. - systemp
System StringCentralmanagement Serverlist Id - an identifier for the resource with format {{fosid}}.
- devprof string
- Devprof.
- addr
Type string - Indicate whether the FortiGate communicates with the override server using an IPv4 address, an IPv6 address or a FQDN. Valid values:
fqdn
,ipv4
,ipv6
. - adom string
- Adom. This value is valid only when the
scopetype
isadom
, otherwise the value of adom in the provider will be inherited. - fosid number
- ID.
- fqdn string
- FQDN address of override server.
- scopetype string
- The scope of application of the resource. Valid values:
inherit
,adom
. Theinherit
means that the scopetype of the provider will be inherited, and adom will also be inherited. The default value isinherit
. - server
Address string - IPv4 address of override server.
- server
Address6 string - IPv6 address of override server.
- server
Types string[] - FortiGuard service type. Valid values:
update
,rating
. - systemp
System stringCentralmanagement Serverlist Id - an identifier for the resource with format {{fosid}}.
- devprof str
- Devprof.
- addr_
type str - Indicate whether the FortiGate communicates with the override server using an IPv4 address, an IPv6 address or a FQDN. Valid values:
fqdn
,ipv4
,ipv6
. - adom str
- Adom. This value is valid only when the
scopetype
isadom
, otherwise the value of adom in the provider will be inherited. - fosid float
- ID.
- fqdn str
- FQDN address of override server.
- scopetype str
- The scope of application of the resource. Valid values:
inherit
,adom
. Theinherit
means that the scopetype of the provider will be inherited, and adom will also be inherited. The default value isinherit
. - server_
address str - IPv4 address of override server.
- server_
address6 str - IPv6 address of override server.
- server_
types Sequence[str] - FortiGuard service type. Valid values:
update
,rating
. - systemp_
system_ strcentralmanagement_ serverlist_ id - an identifier for the resource with format {{fosid}}.
- devprof String
- Devprof.
- addr
Type String - Indicate whether the FortiGate communicates with the override server using an IPv4 address, an IPv6 address or a FQDN. Valid values:
fqdn
,ipv4
,ipv6
. - adom String
- Adom. This value is valid only when the
scopetype
isadom
, otherwise the value of adom in the provider will be inherited. - fosid Number
- ID.
- fqdn String
- FQDN address of override server.
- scopetype String
- The scope of application of the resource. Valid values:
inherit
,adom
. Theinherit
means that the scopetype of the provider will be inherited, and adom will also be inherited. The default value isinherit
. - server
Address String - IPv4 address of override server.
- server
Address6 String - IPv6 address of override server.
- server
Types List<String> - FortiGuard service type. Valid values:
update
,rating
. - systemp
System StringCentralmanagement Serverlist Id - an identifier for the resource with format {{fosid}}.
Outputs
All input properties are implicitly available as output properties. Additionally, the SystempSystemCentralmanagementServerlist 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 SystempSystemCentralmanagementServerlist Resource
Get an existing SystempSystemCentralmanagementServerlist 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?: SystempSystemCentralmanagementServerlistState, opts?: CustomResourceOptions): SystempSystemCentralmanagementServerlist
@staticmethod
def get(resource_name: str,
id: str,
opts: Optional[ResourceOptions] = None,
addr_type: Optional[str] = None,
adom: Optional[str] = None,
devprof: Optional[str] = None,
fosid: Optional[float] = None,
fqdn: Optional[str] = None,
scopetype: Optional[str] = None,
server_address: Optional[str] = None,
server_address6: Optional[str] = None,
server_types: Optional[Sequence[str]] = None,
systemp_system_centralmanagement_serverlist_id: Optional[str] = None) -> SystempSystemCentralmanagementServerlist
func GetSystempSystemCentralmanagementServerlist(ctx *Context, name string, id IDInput, state *SystempSystemCentralmanagementServerlistState, opts ...ResourceOption) (*SystempSystemCentralmanagementServerlist, error)
public static SystempSystemCentralmanagementServerlist Get(string name, Input<string> id, SystempSystemCentralmanagementServerlistState? state, CustomResourceOptions? opts = null)
public static SystempSystemCentralmanagementServerlist get(String name, Output<String> id, SystempSystemCentralmanagementServerlistState state, CustomResourceOptions options)
resources: _: type: fortimanager:SystempSystemCentralmanagementServerlist 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.
- Addr
Type string - Indicate whether the FortiGate communicates with the override server using an IPv4 address, an IPv6 address or a FQDN. Valid values:
fqdn
,ipv4
,ipv6
. - Adom string
- Adom. This value is valid only when the
scopetype
isadom
, otherwise the value of adom in the provider will be inherited. - Devprof string
- Devprof.
- Fosid double
- ID.
- Fqdn string
- FQDN address of override server.
- Scopetype string
- The scope of application of the resource. Valid values:
inherit
,adom
. Theinherit
means that the scopetype of the provider will be inherited, and adom will also be inherited. The default value isinherit
. - Server
Address string - IPv4 address of override server.
- Server
Address6 string - IPv6 address of override server.
- Server
Types List<string> - FortiGuard service type. Valid values:
update
,rating
. - Systemp
System stringCentralmanagement Serverlist Id - an identifier for the resource with format {{fosid}}.
- Addr
Type string - Indicate whether the FortiGate communicates with the override server using an IPv4 address, an IPv6 address or a FQDN. Valid values:
fqdn
,ipv4
,ipv6
. - Adom string
- Adom. This value is valid only when the
scopetype
isadom
, otherwise the value of adom in the provider will be inherited. - Devprof string
- Devprof.
- Fosid float64
- ID.
- Fqdn string
- FQDN address of override server.
- Scopetype string
- The scope of application of the resource. Valid values:
inherit
,adom
. Theinherit
means that the scopetype of the provider will be inherited, and adom will also be inherited. The default value isinherit
. - Server
Address string - IPv4 address of override server.
- Server
Address6 string - IPv6 address of override server.
- Server
Types []string - FortiGuard service type. Valid values:
update
,rating
. - Systemp
System stringCentralmanagement Serverlist Id - an identifier for the resource with format {{fosid}}.
- addr
Type String - Indicate whether the FortiGate communicates with the override server using an IPv4 address, an IPv6 address or a FQDN. Valid values:
fqdn
,ipv4
,ipv6
. - adom String
- Adom. This value is valid only when the
scopetype
isadom
, otherwise the value of adom in the provider will be inherited. - devprof String
- Devprof.
- fosid Double
- ID.
- fqdn String
- FQDN address of override server.
- scopetype String
- The scope of application of the resource. Valid values:
inherit
,adom
. Theinherit
means that the scopetype of the provider will be inherited, and adom will also be inherited. The default value isinherit
. - server
Address String - IPv4 address of override server.
- server
Address6 String - IPv6 address of override server.
- server
Types List<String> - FortiGuard service type. Valid values:
update
,rating
. - systemp
System StringCentralmanagement Serverlist Id - an identifier for the resource with format {{fosid}}.
- addr
Type string - Indicate whether the FortiGate communicates with the override server using an IPv4 address, an IPv6 address or a FQDN. Valid values:
fqdn
,ipv4
,ipv6
. - adom string
- Adom. This value is valid only when the
scopetype
isadom
, otherwise the value of adom in the provider will be inherited. - devprof string
- Devprof.
- fosid number
- ID.
- fqdn string
- FQDN address of override server.
- scopetype string
- The scope of application of the resource. Valid values:
inherit
,adom
. Theinherit
means that the scopetype of the provider will be inherited, and adom will also be inherited. The default value isinherit
. - server
Address string - IPv4 address of override server.
- server
Address6 string - IPv6 address of override server.
- server
Types string[] - FortiGuard service type. Valid values:
update
,rating
. - systemp
System stringCentralmanagement Serverlist Id - an identifier for the resource with format {{fosid}}.
- addr_
type str - Indicate whether the FortiGate communicates with the override server using an IPv4 address, an IPv6 address or a FQDN. Valid values:
fqdn
,ipv4
,ipv6
. - adom str
- Adom. This value is valid only when the
scopetype
isadom
, otherwise the value of adom in the provider will be inherited. - devprof str
- Devprof.
- fosid float
- ID.
- fqdn str
- FQDN address of override server.
- scopetype str
- The scope of application of the resource. Valid values:
inherit
,adom
. Theinherit
means that the scopetype of the provider will be inherited, and adom will also be inherited. The default value isinherit
. - server_
address str - IPv4 address of override server.
- server_
address6 str - IPv6 address of override server.
- server_
types Sequence[str] - FortiGuard service type. Valid values:
update
,rating
. - systemp_
system_ strcentralmanagement_ serverlist_ id - an identifier for the resource with format {{fosid}}.
- addr
Type String - Indicate whether the FortiGate communicates with the override server using an IPv4 address, an IPv6 address or a FQDN. Valid values:
fqdn
,ipv4
,ipv6
. - adom String
- Adom. This value is valid only when the
scopetype
isadom
, otherwise the value of adom in the provider will be inherited. - devprof String
- Devprof.
- fosid Number
- ID.
- fqdn String
- FQDN address of override server.
- scopetype String
- The scope of application of the resource. Valid values:
inherit
,adom
. Theinherit
means that the scopetype of the provider will be inherited, and adom will also be inherited. The default value isinherit
. - server
Address String - IPv4 address of override server.
- server
Address6 String - IPv6 address of override server.
- server
Types List<String> - FortiGuard service type. Valid values:
update
,rating
. - systemp
System StringCentralmanagement Serverlist Id - an identifier for the resource with format {{fosid}}.
Import
Systemp SystemCentralManagementServerList can be imported using any of these accepted formats:
Set import_options = [“devprof=YOUR_VALUE”] in the provider section.
$ export “FORTIMANAGER_IMPORT_TABLE”=“true”
$ pulumi import fortimanager:index/systempSystemCentralmanagementServerlist:SystempSystemCentralmanagementServerlist labelname {{fosid}}
$ 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.