fortimanager.ObjectFirewallAccessproxyvirtualhost
Explore with Pulumi AI
Configure Access Proxy virtual hosts.
Example Usage
import * as pulumi from "@pulumi/pulumi";
import * as fortimanager from "@pulumi/fortimanager";
const trname = new fortimanager.ObjectFirewallAccessproxyvirtualhost("trname", {
host: "host",
hostType: "wildcard",
});
import pulumi
import pulumi_fortimanager as fortimanager
trname = fortimanager.ObjectFirewallAccessproxyvirtualhost("trname",
host="host",
host_type="wildcard")
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.NewObjectFirewallAccessproxyvirtualhost(ctx, "trname", &fortimanager.ObjectFirewallAccessproxyvirtualhostArgs{
Host: pulumi.String("host"),
HostType: pulumi.String("wildcard"),
})
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.ObjectFirewallAccessproxyvirtualhost("trname", new()
{
Host = "host",
HostType = "wildcard",
});
});
package generated_program;
import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.fortimanager.ObjectFirewallAccessproxyvirtualhost;
import com.pulumi.fortimanager.ObjectFirewallAccessproxyvirtualhostArgs;
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 ObjectFirewallAccessproxyvirtualhost("trname", ObjectFirewallAccessproxyvirtualhostArgs.builder()
.host("host")
.hostType("wildcard")
.build());
}
}
resources:
trname:
type: fortimanager:ObjectFirewallAccessproxyvirtualhost
properties:
host: host
hostType: wildcard
Create ObjectFirewallAccessproxyvirtualhost Resource
Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.
Constructor syntax
new ObjectFirewallAccessproxyvirtualhost(name: string, args?: ObjectFirewallAccessproxyvirtualhostArgs, opts?: CustomResourceOptions);
@overload
def ObjectFirewallAccessproxyvirtualhost(resource_name: str,
args: Optional[ObjectFirewallAccessproxyvirtualhostArgs] = None,
opts: Optional[ResourceOptions] = None)
@overload
def ObjectFirewallAccessproxyvirtualhost(resource_name: str,
opts: Optional[ResourceOptions] = None,
adom: Optional[str] = None,
host: Optional[str] = None,
host_type: Optional[str] = None,
name: Optional[str] = None,
object_firewall_accessproxyvirtualhost_id: Optional[str] = None,
replacemsg_group: Optional[str] = None,
scopetype: Optional[str] = None,
ssl_certificate: Optional[str] = None)
func NewObjectFirewallAccessproxyvirtualhost(ctx *Context, name string, args *ObjectFirewallAccessproxyvirtualhostArgs, opts ...ResourceOption) (*ObjectFirewallAccessproxyvirtualhost, error)
public ObjectFirewallAccessproxyvirtualhost(string name, ObjectFirewallAccessproxyvirtualhostArgs? args = null, CustomResourceOptions? opts = null)
public ObjectFirewallAccessproxyvirtualhost(String name, ObjectFirewallAccessproxyvirtualhostArgs args)
public ObjectFirewallAccessproxyvirtualhost(String name, ObjectFirewallAccessproxyvirtualhostArgs args, CustomResourceOptions options)
type: fortimanager:ObjectFirewallAccessproxyvirtualhost
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 ObjectFirewallAccessproxyvirtualhostArgs
- 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 ObjectFirewallAccessproxyvirtualhostArgs
- 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 ObjectFirewallAccessproxyvirtualhostArgs
- The arguments to resource properties.
- opts ResourceOption
- Bag of options to control resource's behavior.
- name string
- The unique name of the resource.
- args ObjectFirewallAccessproxyvirtualhostArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- name String
- The unique name of the resource.
- args ObjectFirewallAccessproxyvirtualhostArgs
- 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 objectFirewallAccessproxyvirtualhostResource = new Fortimanager.ObjectFirewallAccessproxyvirtualhost("objectFirewallAccessproxyvirtualhostResource", new()
{
Adom = "string",
Host = "string",
HostType = "string",
Name = "string",
ObjectFirewallAccessproxyvirtualhostId = "string",
ReplacemsgGroup = "string",
Scopetype = "string",
SslCertificate = "string",
});
example, err := fortimanager.NewObjectFirewallAccessproxyvirtualhost(ctx, "objectFirewallAccessproxyvirtualhostResource", &fortimanager.ObjectFirewallAccessproxyvirtualhostArgs{
Adom: pulumi.String("string"),
Host: pulumi.String("string"),
HostType: pulumi.String("string"),
Name: pulumi.String("string"),
ObjectFirewallAccessproxyvirtualhostId: pulumi.String("string"),
ReplacemsgGroup: pulumi.String("string"),
Scopetype: pulumi.String("string"),
SslCertificate: pulumi.String("string"),
})
var objectFirewallAccessproxyvirtualhostResource = new ObjectFirewallAccessproxyvirtualhost("objectFirewallAccessproxyvirtualhostResource", ObjectFirewallAccessproxyvirtualhostArgs.builder()
.adom("string")
.host("string")
.hostType("string")
.name("string")
.objectFirewallAccessproxyvirtualhostId("string")
.replacemsgGroup("string")
.scopetype("string")
.sslCertificate("string")
.build());
object_firewall_accessproxyvirtualhost_resource = fortimanager.ObjectFirewallAccessproxyvirtualhost("objectFirewallAccessproxyvirtualhostResource",
adom="string",
host="string",
host_type="string",
name="string",
object_firewall_accessproxyvirtualhost_id="string",
replacemsg_group="string",
scopetype="string",
ssl_certificate="string")
const objectFirewallAccessproxyvirtualhostResource = new fortimanager.ObjectFirewallAccessproxyvirtualhost("objectFirewallAccessproxyvirtualhostResource", {
adom: "string",
host: "string",
hostType: "string",
name: "string",
objectFirewallAccessproxyvirtualhostId: "string",
replacemsgGroup: "string",
scopetype: "string",
sslCertificate: "string",
});
type: fortimanager:ObjectFirewallAccessproxyvirtualhost
properties:
adom: string
host: string
hostType: string
name: string
objectFirewallAccessproxyvirtualhostId: string
replacemsgGroup: string
scopetype: string
sslCertificate: string
ObjectFirewallAccessproxyvirtualhost 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 ObjectFirewallAccessproxyvirtualhost 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. - Host string
- The host name.
- Host
Type string - Type of host pattern. Valid values:
sub-string
,wildcard
. - Name string
- Virtual host name.
- Object
Firewall stringAccessproxyvirtualhost Id - an identifier for the resource with format {{name}}.
- Replacemsg
Group string - Access-proxy-virtual-host replacement message override group.
- 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
. - Ssl
Certificate string - SSL certificate for this host.
- Adom string
- Adom. This value is valid only when the
scopetype
isadom
, otherwise the value of adom in the provider will be inherited. - Host string
- The host name.
- Host
Type string - Type of host pattern. Valid values:
sub-string
,wildcard
. - Name string
- Virtual host name.
- Object
Firewall stringAccessproxyvirtualhost Id - an identifier for the resource with format {{name}}.
- Replacemsg
Group string - Access-proxy-virtual-host replacement message override group.
- 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
. - Ssl
Certificate string - SSL certificate for this host.
- adom String
- Adom. This value is valid only when the
scopetype
isadom
, otherwise the value of adom in the provider will be inherited. - host String
- The host name.
- host
Type String - Type of host pattern. Valid values:
sub-string
,wildcard
. - name String
- Virtual host name.
- object
Firewall StringAccessproxyvirtualhost Id - an identifier for the resource with format {{name}}.
- replacemsg
Group String - Access-proxy-virtual-host replacement message override group.
- 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
. - ssl
Certificate String - SSL certificate for this host.
- adom string
- Adom. This value is valid only when the
scopetype
isadom
, otherwise the value of adom in the provider will be inherited. - host string
- The host name.
- host
Type string - Type of host pattern. Valid values:
sub-string
,wildcard
. - name string
- Virtual host name.
- object
Firewall stringAccessproxyvirtualhost Id - an identifier for the resource with format {{name}}.
- replacemsg
Group string - Access-proxy-virtual-host replacement message override group.
- 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
. - ssl
Certificate string - SSL certificate for this host.
- adom str
- Adom. This value is valid only when the
scopetype
isadom
, otherwise the value of adom in the provider will be inherited. - host str
- The host name.
- host_
type str - Type of host pattern. Valid values:
sub-string
,wildcard
. - name str
- Virtual host name.
- object_
firewall_ straccessproxyvirtualhost_ id - an identifier for the resource with format {{name}}.
- replacemsg_
group str - Access-proxy-virtual-host replacement message override group.
- 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
. - ssl_
certificate str - SSL certificate for this host.
- adom String
- Adom. This value is valid only when the
scopetype
isadom
, otherwise the value of adom in the provider will be inherited. - host String
- The host name.
- host
Type String - Type of host pattern. Valid values:
sub-string
,wildcard
. - name String
- Virtual host name.
- object
Firewall StringAccessproxyvirtualhost Id - an identifier for the resource with format {{name}}.
- replacemsg
Group String - Access-proxy-virtual-host replacement message override group.
- 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
. - ssl
Certificate String - SSL certificate for this host.
Outputs
All input properties are implicitly available as output properties. Additionally, the ObjectFirewallAccessproxyvirtualhost 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 ObjectFirewallAccessproxyvirtualhost Resource
Get an existing ObjectFirewallAccessproxyvirtualhost 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?: ObjectFirewallAccessproxyvirtualhostState, opts?: CustomResourceOptions): ObjectFirewallAccessproxyvirtualhost
@staticmethod
def get(resource_name: str,
id: str,
opts: Optional[ResourceOptions] = None,
adom: Optional[str] = None,
host: Optional[str] = None,
host_type: Optional[str] = None,
name: Optional[str] = None,
object_firewall_accessproxyvirtualhost_id: Optional[str] = None,
replacemsg_group: Optional[str] = None,
scopetype: Optional[str] = None,
ssl_certificate: Optional[str] = None) -> ObjectFirewallAccessproxyvirtualhost
func GetObjectFirewallAccessproxyvirtualhost(ctx *Context, name string, id IDInput, state *ObjectFirewallAccessproxyvirtualhostState, opts ...ResourceOption) (*ObjectFirewallAccessproxyvirtualhost, error)
public static ObjectFirewallAccessproxyvirtualhost Get(string name, Input<string> id, ObjectFirewallAccessproxyvirtualhostState? state, CustomResourceOptions? opts = null)
public static ObjectFirewallAccessproxyvirtualhost get(String name, Output<String> id, ObjectFirewallAccessproxyvirtualhostState state, CustomResourceOptions options)
resources: _: type: fortimanager:ObjectFirewallAccessproxyvirtualhost 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. - Host string
- The host name.
- Host
Type string - Type of host pattern. Valid values:
sub-string
,wildcard
. - Name string
- Virtual host name.
- Object
Firewall stringAccessproxyvirtualhost Id - an identifier for the resource with format {{name}}.
- Replacemsg
Group string - Access-proxy-virtual-host replacement message override group.
- 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
. - Ssl
Certificate string - SSL certificate for this host.
- Adom string
- Adom. This value is valid only when the
scopetype
isadom
, otherwise the value of adom in the provider will be inherited. - Host string
- The host name.
- Host
Type string - Type of host pattern. Valid values:
sub-string
,wildcard
. - Name string
- Virtual host name.
- Object
Firewall stringAccessproxyvirtualhost Id - an identifier for the resource with format {{name}}.
- Replacemsg
Group string - Access-proxy-virtual-host replacement message override group.
- 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
. - Ssl
Certificate string - SSL certificate for this host.
- adom String
- Adom. This value is valid only when the
scopetype
isadom
, otherwise the value of adom in the provider will be inherited. - host String
- The host name.
- host
Type String - Type of host pattern. Valid values:
sub-string
,wildcard
. - name String
- Virtual host name.
- object
Firewall StringAccessproxyvirtualhost Id - an identifier for the resource with format {{name}}.
- replacemsg
Group String - Access-proxy-virtual-host replacement message override group.
- 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
. - ssl
Certificate String - SSL certificate for this host.
- adom string
- Adom. This value is valid only when the
scopetype
isadom
, otherwise the value of adom in the provider will be inherited. - host string
- The host name.
- host
Type string - Type of host pattern. Valid values:
sub-string
,wildcard
. - name string
- Virtual host name.
- object
Firewall stringAccessproxyvirtualhost Id - an identifier for the resource with format {{name}}.
- replacemsg
Group string - Access-proxy-virtual-host replacement message override group.
- 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
. - ssl
Certificate string - SSL certificate for this host.
- adom str
- Adom. This value is valid only when the
scopetype
isadom
, otherwise the value of adom in the provider will be inherited. - host str
- The host name.
- host_
type str - Type of host pattern. Valid values:
sub-string
,wildcard
. - name str
- Virtual host name.
- object_
firewall_ straccessproxyvirtualhost_ id - an identifier for the resource with format {{name}}.
- replacemsg_
group str - Access-proxy-virtual-host replacement message override group.
- 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
. - ssl_
certificate str - SSL certificate for this host.
- adom String
- Adom. This value is valid only when the
scopetype
isadom
, otherwise the value of adom in the provider will be inherited. - host String
- The host name.
- host
Type String - Type of host pattern. Valid values:
sub-string
,wildcard
. - name String
- Virtual host name.
- object
Firewall StringAccessproxyvirtualhost Id - an identifier for the resource with format {{name}}.
- replacemsg
Group String - Access-proxy-virtual-host replacement message override group.
- 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
. - ssl
Certificate String - SSL certificate for this host.
Import
ObjectFirewall AccessProxyVirtualHost can be imported using any of these accepted formats:
$ export “FORTIMANAGER_IMPORT_TABLE”=“true”
$ pulumi import fortimanager:index/objectFirewallAccessproxyvirtualhost:ObjectFirewallAccessproxyvirtualhost 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.