fortimanager.ObjectFirewallInternetserviceaddition
Explore with Pulumi AI
Configure Internet Services Addition.
The following variables have sub resource. Avoid using them together, otherwise conflicts and overwrites may occur.
entry
:fortimanager.ObjectFirewallInternetserviceadditionEntry
Example Usage
import * as pulumi from "@pulumi/pulumi";
import * as fortimanager from "@pulumi/fortimanager";
const trname = new fortimanager.ObjectFirewallInternetserviceaddition("trname", {
comment: "This is a Terraform example",
fosid: "65536",
});
import pulumi
import pulumi_fortimanager as fortimanager
trname = fortimanager.ObjectFirewallInternetserviceaddition("trname",
comment="This is a Terraform example",
fosid="65536")
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.NewObjectFirewallInternetserviceaddition(ctx, "trname", &fortimanager.ObjectFirewallInternetserviceadditionArgs{
Comment: pulumi.String("This is a Terraform example"),
Fosid: pulumi.String("65536"),
})
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.ObjectFirewallInternetserviceaddition("trname", new()
{
Comment = "This is a Terraform example",
Fosid = "65536",
});
});
package generated_program;
import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.fortimanager.ObjectFirewallInternetserviceaddition;
import com.pulumi.fortimanager.ObjectFirewallInternetserviceadditionArgs;
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 ObjectFirewallInternetserviceaddition("trname", ObjectFirewallInternetserviceadditionArgs.builder()
.comment("This is a Terraform example")
.fosid("65536")
.build());
}
}
resources:
trname:
type: fortimanager:ObjectFirewallInternetserviceaddition
properties:
comment: This is a Terraform example
fosid: '65536'
Create ObjectFirewallInternetserviceaddition Resource
Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.
Constructor syntax
new ObjectFirewallInternetserviceaddition(name: string, args?: ObjectFirewallInternetserviceadditionArgs, opts?: CustomResourceOptions);
@overload
def ObjectFirewallInternetserviceaddition(resource_name: str,
args: Optional[ObjectFirewallInternetserviceadditionArgs] = None,
opts: Optional[ResourceOptions] = None)
@overload
def ObjectFirewallInternetserviceaddition(resource_name: str,
opts: Optional[ResourceOptions] = None,
adom: Optional[str] = None,
comment: Optional[str] = None,
dynamic_sort_subtable: Optional[str] = None,
entries: Optional[Sequence[ObjectFirewallInternetserviceadditionEntryArgs]] = None,
fosid: Optional[str] = None,
object_firewall_internetserviceaddition_id: Optional[str] = None,
scopetype: Optional[str] = None)
func NewObjectFirewallInternetserviceaddition(ctx *Context, name string, args *ObjectFirewallInternetserviceadditionArgs, opts ...ResourceOption) (*ObjectFirewallInternetserviceaddition, error)
public ObjectFirewallInternetserviceaddition(string name, ObjectFirewallInternetserviceadditionArgs? args = null, CustomResourceOptions? opts = null)
public ObjectFirewallInternetserviceaddition(String name, ObjectFirewallInternetserviceadditionArgs args)
public ObjectFirewallInternetserviceaddition(String name, ObjectFirewallInternetserviceadditionArgs args, CustomResourceOptions options)
type: fortimanager:ObjectFirewallInternetserviceaddition
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 ObjectFirewallInternetserviceadditionArgs
- 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 ObjectFirewallInternetserviceadditionArgs
- 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 ObjectFirewallInternetserviceadditionArgs
- The arguments to resource properties.
- opts ResourceOption
- Bag of options to control resource's behavior.
- name string
- The unique name of the resource.
- args ObjectFirewallInternetserviceadditionArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- name String
- The unique name of the resource.
- args ObjectFirewallInternetserviceadditionArgs
- 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 objectFirewallInternetserviceadditionResource = new Fortimanager.ObjectFirewallInternetserviceaddition("objectFirewallInternetserviceadditionResource", new()
{
Adom = "string",
Comment = "string",
DynamicSortSubtable = "string",
Entries = new[]
{
new Fortimanager.Inputs.ObjectFirewallInternetserviceadditionEntryArgs
{
AddrMode = "string",
Id = 0,
PortRanges = new[]
{
new Fortimanager.Inputs.ObjectFirewallInternetserviceadditionEntryPortRangeArgs
{
EndPort = 0,
Id = 0,
StartPort = 0,
},
},
Protocol = 0,
},
},
Fosid = "string",
ObjectFirewallInternetserviceadditionId = "string",
Scopetype = "string",
});
example, err := fortimanager.NewObjectFirewallInternetserviceaddition(ctx, "objectFirewallInternetserviceadditionResource", &fortimanager.ObjectFirewallInternetserviceadditionArgs{
Adom: pulumi.String("string"),
Comment: pulumi.String("string"),
DynamicSortSubtable: pulumi.String("string"),
Entries: .ObjectFirewallInternetserviceadditionEntryTypeArray{
&.ObjectFirewallInternetserviceadditionEntryTypeArgs{
AddrMode: pulumi.String("string"),
Id: pulumi.Float64(0),
PortRanges: .ObjectFirewallInternetserviceadditionEntryPortRangeTypeArray{
&.ObjectFirewallInternetserviceadditionEntryPortRangeTypeArgs{
EndPort: pulumi.Float64(0),
Id: pulumi.Float64(0),
StartPort: pulumi.Float64(0),
},
},
Protocol: pulumi.Float64(0),
},
},
Fosid: pulumi.String("string"),
ObjectFirewallInternetserviceadditionId: pulumi.String("string"),
Scopetype: pulumi.String("string"),
})
var objectFirewallInternetserviceadditionResource = new ObjectFirewallInternetserviceaddition("objectFirewallInternetserviceadditionResource", ObjectFirewallInternetserviceadditionArgs.builder()
.adom("string")
.comment("string")
.dynamicSortSubtable("string")
.entries(ObjectFirewallInternetserviceadditionEntryArgs.builder()
.addrMode("string")
.id(0)
.portRanges(ObjectFirewallInternetserviceadditionEntryPortRangeArgs.builder()
.endPort(0)
.id(0)
.startPort(0)
.build())
.protocol(0)
.build())
.fosid("string")
.objectFirewallInternetserviceadditionId("string")
.scopetype("string")
.build());
object_firewall_internetserviceaddition_resource = fortimanager.ObjectFirewallInternetserviceaddition("objectFirewallInternetserviceadditionResource",
adom="string",
comment="string",
dynamic_sort_subtable="string",
entries=[{
"addr_mode": "string",
"id": 0,
"port_ranges": [{
"end_port": 0,
"id": 0,
"start_port": 0,
}],
"protocol": 0,
}],
fosid="string",
object_firewall_internetserviceaddition_id="string",
scopetype="string")
const objectFirewallInternetserviceadditionResource = new fortimanager.ObjectFirewallInternetserviceaddition("objectFirewallInternetserviceadditionResource", {
adom: "string",
comment: "string",
dynamicSortSubtable: "string",
entries: [{
addrMode: "string",
id: 0,
portRanges: [{
endPort: 0,
id: 0,
startPort: 0,
}],
protocol: 0,
}],
fosid: "string",
objectFirewallInternetserviceadditionId: "string",
scopetype: "string",
});
type: fortimanager:ObjectFirewallInternetserviceaddition
properties:
adom: string
comment: string
dynamicSortSubtable: string
entries:
- addrMode: string
id: 0
portRanges:
- endPort: 0
id: 0
startPort: 0
protocol: 0
fosid: string
objectFirewallInternetserviceadditionId: string
scopetype: string
ObjectFirewallInternetserviceaddition 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 ObjectFirewallInternetserviceaddition 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. - Comment string
- Comment.
- 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.
- Entries
List<Object
Firewall Internetserviceaddition Entry> - Entry. The structure of
entry
block is documented below. - Fosid string
- Internet Service ID in the Internet Service database.
- Object
Firewall stringInternetserviceaddition Id - an identifier for the resource with format {{fosid}}.
- 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. - Comment string
- Comment.
- 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.
- Entries
[]Object
Firewall Internetserviceaddition Entry Type Args - Entry. The structure of
entry
block is documented below. - Fosid string
- Internet Service ID in the Internet Service database.
- Object
Firewall stringInternetserviceaddition Id - an identifier for the resource with format {{fosid}}.
- 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. - comment String
- Comment.
- 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.
- entries
List<Object
Firewall Internetserviceaddition Entry> - Entry. The structure of
entry
block is documented below. - fosid String
- Internet Service ID in the Internet Service database.
- object
Firewall StringInternetserviceaddition Id - an identifier for the resource with format {{fosid}}.
- 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. - comment string
- Comment.
- 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.
- entries
Object
Firewall Internetserviceaddition Entry[] - Entry. The structure of
entry
block is documented below. - fosid string
- Internet Service ID in the Internet Service database.
- object
Firewall stringInternetserviceaddition Id - an identifier for the resource with format {{fosid}}.
- 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. - comment str
- Comment.
- 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.
- entries
Sequence[Object
Firewall Internetserviceaddition Entry Args] - Entry. The structure of
entry
block is documented below. - fosid str
- Internet Service ID in the Internet Service database.
- object_
firewall_ strinternetserviceaddition_ id - an identifier for the resource with format {{fosid}}.
- 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. - comment String
- Comment.
- 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.
- entries List<Property Map>
- Entry. The structure of
entry
block is documented below. - fosid String
- Internet Service ID in the Internet Service database.
- object
Firewall StringInternetserviceaddition Id - an identifier for the resource with format {{fosid}}.
- 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 ObjectFirewallInternetserviceaddition 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 ObjectFirewallInternetserviceaddition Resource
Get an existing ObjectFirewallInternetserviceaddition 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?: ObjectFirewallInternetserviceadditionState, opts?: CustomResourceOptions): ObjectFirewallInternetserviceaddition
@staticmethod
def get(resource_name: str,
id: str,
opts: Optional[ResourceOptions] = None,
adom: Optional[str] = None,
comment: Optional[str] = None,
dynamic_sort_subtable: Optional[str] = None,
entries: Optional[Sequence[ObjectFirewallInternetserviceadditionEntryArgs]] = None,
fosid: Optional[str] = None,
object_firewall_internetserviceaddition_id: Optional[str] = None,
scopetype: Optional[str] = None) -> ObjectFirewallInternetserviceaddition
func GetObjectFirewallInternetserviceaddition(ctx *Context, name string, id IDInput, state *ObjectFirewallInternetserviceadditionState, opts ...ResourceOption) (*ObjectFirewallInternetserviceaddition, error)
public static ObjectFirewallInternetserviceaddition Get(string name, Input<string> id, ObjectFirewallInternetserviceadditionState? state, CustomResourceOptions? opts = null)
public static ObjectFirewallInternetserviceaddition get(String name, Output<String> id, ObjectFirewallInternetserviceadditionState state, CustomResourceOptions options)
resources: _: type: fortimanager:ObjectFirewallInternetserviceaddition 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. - Comment string
- Comment.
- 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.
- Entries
List<Object
Firewall Internetserviceaddition Entry> - Entry. The structure of
entry
block is documented below. - Fosid string
- Internet Service ID in the Internet Service database.
- Object
Firewall stringInternetserviceaddition Id - an identifier for the resource with format {{fosid}}.
- 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. - Comment string
- Comment.
- 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.
- Entries
[]Object
Firewall Internetserviceaddition Entry Type Args - Entry. The structure of
entry
block is documented below. - Fosid string
- Internet Service ID in the Internet Service database.
- Object
Firewall stringInternetserviceaddition Id - an identifier for the resource with format {{fosid}}.
- 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. - comment String
- Comment.
- 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.
- entries
List<Object
Firewall Internetserviceaddition Entry> - Entry. The structure of
entry
block is documented below. - fosid String
- Internet Service ID in the Internet Service database.
- object
Firewall StringInternetserviceaddition Id - an identifier for the resource with format {{fosid}}.
- 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. - comment string
- Comment.
- 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.
- entries
Object
Firewall Internetserviceaddition Entry[] - Entry. The structure of
entry
block is documented below. - fosid string
- Internet Service ID in the Internet Service database.
- object
Firewall stringInternetserviceaddition Id - an identifier for the resource with format {{fosid}}.
- 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. - comment str
- Comment.
- 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.
- entries
Sequence[Object
Firewall Internetserviceaddition Entry Args] - Entry. The structure of
entry
block is documented below. - fosid str
- Internet Service ID in the Internet Service database.
- object_
firewall_ strinternetserviceaddition_ id - an identifier for the resource with format {{fosid}}.
- 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. - comment String
- Comment.
- 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.
- entries List<Property Map>
- Entry. The structure of
entry
block is documented below. - fosid String
- Internet Service ID in the Internet Service database.
- object
Firewall StringInternetserviceaddition Id - an identifier for the resource with format {{fosid}}.
- 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
ObjectFirewallInternetserviceadditionEntry, ObjectFirewallInternetserviceadditionEntryArgs
- Addr
Mode string - Address mode (IPv4 or IPv6) Valid values:
ipv4
,ipv6
. - Id double
- Entry ID(1-255).
- Port
Ranges List<ObjectFirewall Internetserviceaddition Entry Port Range> - Port-Range. The structure of
port_range
block is documented below. - Protocol double
- Integer value for the protocol type as defined by IANA (0 - 255).
- Addr
Mode string - Address mode (IPv4 or IPv6) Valid values:
ipv4
,ipv6
. - Id float64
- Entry ID(1-255).
- Port
Ranges []ObjectFirewall Internetserviceaddition Entry Port Range Type - Port-Range. The structure of
port_range
block is documented below. - Protocol float64
- Integer value for the protocol type as defined by IANA (0 - 255).
- addr
Mode String - Address mode (IPv4 or IPv6) Valid values:
ipv4
,ipv6
. - id Double
- Entry ID(1-255).
- port
Ranges List<ObjectFirewall Internetserviceaddition Entry Port Range> - Port-Range. The structure of
port_range
block is documented below. - protocol Double
- Integer value for the protocol type as defined by IANA (0 - 255).
- addr
Mode string - Address mode (IPv4 or IPv6) Valid values:
ipv4
,ipv6
. - id number
- Entry ID(1-255).
- port
Ranges ObjectFirewall Internetserviceaddition Entry Port Range[] - Port-Range. The structure of
port_range
block is documented below. - protocol number
- Integer value for the protocol type as defined by IANA (0 - 255).
- addr_
mode str - Address mode (IPv4 or IPv6) Valid values:
ipv4
,ipv6
. - id float
- Entry ID(1-255).
- port_
ranges Sequence[ObjectFirewall Internetserviceaddition Entry Port Range] - Port-Range. The structure of
port_range
block is documented below. - protocol float
- Integer value for the protocol type as defined by IANA (0 - 255).
- addr
Mode String - Address mode (IPv4 or IPv6) Valid values:
ipv4
,ipv6
. - id Number
- Entry ID(1-255).
- port
Ranges List<Property Map> - Port-Range. The structure of
port_range
block is documented below. - protocol Number
- Integer value for the protocol type as defined by IANA (0 - 255).
ObjectFirewallInternetserviceadditionEntryPortRange, ObjectFirewallInternetserviceadditionEntryPortRangeArgs
- end_
port float - Integer value for ending TCP/UDP/SCTP destination port in range (1 to 65535).
- id float
- Custom entry port range ID.
- start_
port float - Integer value for starting TCP/UDP/SCTP destination port in range (1 to 65535).
Import
ObjectFirewall InternetServiceAddition can be imported using any of these accepted formats:
$ export “FORTIMANAGER_IMPORT_TABLE”=“true”
$ pulumi import fortimanager:index/objectFirewallInternetserviceaddition:ObjectFirewallInternetserviceaddition 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.