flexibleengine.NetworkAcl
Explore with Pulumi AI
Manages a network ACL resource within FlexibleEngine.
Example Usage
import * as pulumi from "@pulumi/pulumi";
import * as flexibleengine from "@pulumi/flexibleengine";
const subnet = flexibleengine.getVpcSubnetV1({
name: "subnet-default",
});
const rule1 = new flexibleengine.NetworkAclRule("rule1", {
description: "drop TELNET traffic",
action: "deny",
protocol: "tcp",
destinationPort: "23",
enabled: true,
});
const rule2 = new flexibleengine.NetworkAclRule("rule2", {
description: "drop NTP traffic",
action: "deny",
protocol: "udp",
destinationPort: "123",
enabled: false,
});
const fwAcl = new flexibleengine.NetworkAcl("fwAcl", {
subnets: [subnet.then(subnet => subnet.id)],
inboundRules: [
rule1.networkAclRuleId,
rule2.networkAclRuleId,
],
});
import pulumi
import pulumi_flexibleengine as flexibleengine
subnet = flexibleengine.get_vpc_subnet_v1(name="subnet-default")
rule1 = flexibleengine.NetworkAclRule("rule1",
description="drop TELNET traffic",
action="deny",
protocol="tcp",
destination_port="23",
enabled=True)
rule2 = flexibleengine.NetworkAclRule("rule2",
description="drop NTP traffic",
action="deny",
protocol="udp",
destination_port="123",
enabled=False)
fw_acl = flexibleengine.NetworkAcl("fwAcl",
subnets=[subnet.id],
inbound_rules=[
rule1.network_acl_rule_id,
rule2.network_acl_rule_id,
])
package main
import (
"github.com/pulumi/pulumi-terraform-provider/sdks/go/flexibleengine/flexibleengine"
"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
)
func main() {
pulumi.Run(func(ctx *pulumi.Context) error {
subnet, err := flexibleengine.LookupVpcSubnetV1(ctx, &flexibleengine.LookupVpcSubnetV1Args{
Name: pulumi.StringRef("subnet-default"),
}, nil)
if err != nil {
return err
}
rule1, err := flexibleengine.NewNetworkAclRule(ctx, "rule1", &flexibleengine.NetworkAclRuleArgs{
Description: pulumi.String("drop TELNET traffic"),
Action: pulumi.String("deny"),
Protocol: pulumi.String("tcp"),
DestinationPort: pulumi.String("23"),
Enabled: pulumi.Bool(true),
})
if err != nil {
return err
}
rule2, err := flexibleengine.NewNetworkAclRule(ctx, "rule2", &flexibleengine.NetworkAclRuleArgs{
Description: pulumi.String("drop NTP traffic"),
Action: pulumi.String("deny"),
Protocol: pulumi.String("udp"),
DestinationPort: pulumi.String("123"),
Enabled: pulumi.Bool(false),
})
if err != nil {
return err
}
_, err = flexibleengine.NewNetworkAcl(ctx, "fwAcl", &flexibleengine.NetworkAclArgs{
Subnets: pulumi.StringArray{
pulumi.String(subnet.Id),
},
InboundRules: pulumi.StringArray{
rule1.NetworkAclRuleId,
rule2.NetworkAclRuleId,
},
})
if err != nil {
return err
}
return nil
})
}
using System.Collections.Generic;
using System.Linq;
using Pulumi;
using Flexibleengine = Pulumi.Flexibleengine;
return await Deployment.RunAsync(() =>
{
var subnet = Flexibleengine.GetVpcSubnetV1.Invoke(new()
{
Name = "subnet-default",
});
var rule1 = new Flexibleengine.NetworkAclRule("rule1", new()
{
Description = "drop TELNET traffic",
Action = "deny",
Protocol = "tcp",
DestinationPort = "23",
Enabled = true,
});
var rule2 = new Flexibleengine.NetworkAclRule("rule2", new()
{
Description = "drop NTP traffic",
Action = "deny",
Protocol = "udp",
DestinationPort = "123",
Enabled = false,
});
var fwAcl = new Flexibleengine.NetworkAcl("fwAcl", new()
{
Subnets = new[]
{
subnet.Apply(getVpcSubnetV1Result => getVpcSubnetV1Result.Id),
},
InboundRules = new[]
{
rule1.NetworkAclRuleId,
rule2.NetworkAclRuleId,
},
});
});
package generated_program;
import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.flexibleengine.FlexibleengineFunctions;
import com.pulumi.flexibleengine.inputs.GetVpcSubnetV1Args;
import com.pulumi.flexibleengine.NetworkAclRule;
import com.pulumi.flexibleengine.NetworkAclRuleArgs;
import com.pulumi.flexibleengine.NetworkAcl;
import com.pulumi.flexibleengine.NetworkAclArgs;
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) {
final var subnet = FlexibleengineFunctions.getVpcSubnetV1(GetVpcSubnetV1Args.builder()
.name("subnet-default")
.build());
var rule1 = new NetworkAclRule("rule1", NetworkAclRuleArgs.builder()
.description("drop TELNET traffic")
.action("deny")
.protocol("tcp")
.destinationPort("23")
.enabled("true")
.build());
var rule2 = new NetworkAclRule("rule2", NetworkAclRuleArgs.builder()
.description("drop NTP traffic")
.action("deny")
.protocol("udp")
.destinationPort("123")
.enabled("false")
.build());
var fwAcl = new NetworkAcl("fwAcl", NetworkAclArgs.builder()
.subnets(subnet.applyValue(getVpcSubnetV1Result -> getVpcSubnetV1Result.id()))
.inboundRules(
rule1.networkAclRuleId(),
rule2.networkAclRuleId())
.build());
}
}
resources:
rule1:
type: flexibleengine:NetworkAclRule
properties:
description: drop TELNET traffic
action: deny
protocol: tcp
destinationPort: '23'
enabled: 'true'
rule2:
type: flexibleengine:NetworkAclRule
properties:
description: drop NTP traffic
action: deny
protocol: udp
destinationPort: '123'
enabled: 'false'
fwAcl:
type: flexibleengine:NetworkAcl
properties:
subnets:
- ${subnet.id}
inboundRules:
- ${rule1.networkAclRuleId}
- ${rule2.networkAclRuleId}
variables:
subnet:
fn::invoke:
function: flexibleengine:getVpcSubnetV1
arguments:
name: subnet-default
Create NetworkAcl Resource
Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.
Constructor syntax
new NetworkAcl(name: string, args?: NetworkAclArgs, opts?: CustomResourceOptions);
@overload
def NetworkAcl(resource_name: str,
args: Optional[NetworkAclArgs] = None,
opts: Optional[ResourceOptions] = None)
@overload
def NetworkAcl(resource_name: str,
opts: Optional[ResourceOptions] = None,
description: Optional[str] = None,
inbound_rules: Optional[Sequence[str]] = None,
name: Optional[str] = None,
network_acl_id: Optional[str] = None,
outbound_rules: Optional[Sequence[str]] = None,
subnets: Optional[Sequence[str]] = None,
timeouts: Optional[NetworkAclTimeoutsArgs] = None)
func NewNetworkAcl(ctx *Context, name string, args *NetworkAclArgs, opts ...ResourceOption) (*NetworkAcl, error)
public NetworkAcl(string name, NetworkAclArgs? args = null, CustomResourceOptions? opts = null)
public NetworkAcl(String name, NetworkAclArgs args)
public NetworkAcl(String name, NetworkAclArgs args, CustomResourceOptions options)
type: flexibleengine:NetworkAcl
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 NetworkAclArgs
- 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 NetworkAclArgs
- 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 NetworkAclArgs
- The arguments to resource properties.
- opts ResourceOption
- Bag of options to control resource's behavior.
- name string
- The unique name of the resource.
- args NetworkAclArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- name String
- The unique name of the resource.
- args NetworkAclArgs
- 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 networkAclResource = new Flexibleengine.NetworkAcl("networkAclResource", new()
{
Description = "string",
InboundRules = new[]
{
"string",
},
Name = "string",
NetworkAclId = "string",
OutboundRules = new[]
{
"string",
},
Subnets = new[]
{
"string",
},
Timeouts = new Flexibleengine.Inputs.NetworkAclTimeoutsArgs
{
Create = "string",
Delete = "string",
Update = "string",
},
});
example, err := flexibleengine.NewNetworkAcl(ctx, "networkAclResource", &flexibleengine.NetworkAclArgs{
Description: pulumi.String("string"),
InboundRules: pulumi.StringArray{
pulumi.String("string"),
},
Name: pulumi.String("string"),
NetworkAclId: pulumi.String("string"),
OutboundRules: pulumi.StringArray{
pulumi.String("string"),
},
Subnets: pulumi.StringArray{
pulumi.String("string"),
},
Timeouts: &flexibleengine.NetworkAclTimeoutsArgs{
Create: pulumi.String("string"),
Delete: pulumi.String("string"),
Update: pulumi.String("string"),
},
})
var networkAclResource = new NetworkAcl("networkAclResource", NetworkAclArgs.builder()
.description("string")
.inboundRules("string")
.name("string")
.networkAclId("string")
.outboundRules("string")
.subnets("string")
.timeouts(NetworkAclTimeoutsArgs.builder()
.create("string")
.delete("string")
.update("string")
.build())
.build());
network_acl_resource = flexibleengine.NetworkAcl("networkAclResource",
description="string",
inbound_rules=["string"],
name="string",
network_acl_id="string",
outbound_rules=["string"],
subnets=["string"],
timeouts={
"create": "string",
"delete": "string",
"update": "string",
})
const networkAclResource = new flexibleengine.NetworkAcl("networkAclResource", {
description: "string",
inboundRules: ["string"],
name: "string",
networkAclId: "string",
outboundRules: ["string"],
subnets: ["string"],
timeouts: {
create: "string",
"delete": "string",
update: "string",
},
});
type: flexibleengine:NetworkAcl
properties:
description: string
inboundRules:
- string
name: string
networkAclId: string
outboundRules:
- string
subnets:
- string
timeouts:
create: string
delete: string
update: string
NetworkAcl 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 NetworkAcl resource accepts the following input properties:
- Description string
- Specifies the supplementary information about the network ACL. This parameter can contain a maximum of 255 characters and cannot contain angle brackets (< or >).
- Inbound
Rules List<string> - A list of the IDs of ingress rules associated with the network ACL.
- Name string
- Specifies the network ACL name. This parameter can contain a maximum of 64 characters, which may consist of letters, digits, underscores (_), and hyphens (-).
- Network
Acl stringId - The ID of the network ACL.
- Outbound
Rules List<string> - A list of the IDs of egress rules associated with the network ACL.
- Subnets List<string>
- A list of the IDs of networks associated with the network ACL.
- Timeouts
Network
Acl Timeouts
- Description string
- Specifies the supplementary information about the network ACL. This parameter can contain a maximum of 255 characters and cannot contain angle brackets (< or >).
- Inbound
Rules []string - A list of the IDs of ingress rules associated with the network ACL.
- Name string
- Specifies the network ACL name. This parameter can contain a maximum of 64 characters, which may consist of letters, digits, underscores (_), and hyphens (-).
- Network
Acl stringId - The ID of the network ACL.
- Outbound
Rules []string - A list of the IDs of egress rules associated with the network ACL.
- Subnets []string
- A list of the IDs of networks associated with the network ACL.
- Timeouts
Network
Acl Timeouts Args
- description String
- Specifies the supplementary information about the network ACL. This parameter can contain a maximum of 255 characters and cannot contain angle brackets (< or >).
- inbound
Rules List<String> - A list of the IDs of ingress rules associated with the network ACL.
- name String
- Specifies the network ACL name. This parameter can contain a maximum of 64 characters, which may consist of letters, digits, underscores (_), and hyphens (-).
- network
Acl StringId - The ID of the network ACL.
- outbound
Rules List<String> - A list of the IDs of egress rules associated with the network ACL.
- subnets List<String>
- A list of the IDs of networks associated with the network ACL.
- timeouts
Network
Acl Timeouts
- description string
- Specifies the supplementary information about the network ACL. This parameter can contain a maximum of 255 characters and cannot contain angle brackets (< or >).
- inbound
Rules string[] - A list of the IDs of ingress rules associated with the network ACL.
- name string
- Specifies the network ACL name. This parameter can contain a maximum of 64 characters, which may consist of letters, digits, underscores (_), and hyphens (-).
- network
Acl stringId - The ID of the network ACL.
- outbound
Rules string[] - A list of the IDs of egress rules associated with the network ACL.
- subnets string[]
- A list of the IDs of networks associated with the network ACL.
- timeouts
Network
Acl Timeouts
- description str
- Specifies the supplementary information about the network ACL. This parameter can contain a maximum of 255 characters and cannot contain angle brackets (< or >).
- inbound_
rules Sequence[str] - A list of the IDs of ingress rules associated with the network ACL.
- name str
- Specifies the network ACL name. This parameter can contain a maximum of 64 characters, which may consist of letters, digits, underscores (_), and hyphens (-).
- network_
acl_ strid - The ID of the network ACL.
- outbound_
rules Sequence[str] - A list of the IDs of egress rules associated with the network ACL.
- subnets Sequence[str]
- A list of the IDs of networks associated with the network ACL.
- timeouts
Network
Acl Timeouts Args
- description String
- Specifies the supplementary information about the network ACL. This parameter can contain a maximum of 255 characters and cannot contain angle brackets (< or >).
- inbound
Rules List<String> - A list of the IDs of ingress rules associated with the network ACL.
- name String
- Specifies the network ACL name. This parameter can contain a maximum of 64 characters, which may consist of letters, digits, underscores (_), and hyphens (-).
- network
Acl StringId - The ID of the network ACL.
- outbound
Rules List<String> - A list of the IDs of egress rules associated with the network ACL.
- subnets List<String>
- A list of the IDs of networks associated with the network ACL.
- timeouts Property Map
Outputs
All input properties are implicitly available as output properties. Additionally, the NetworkAcl resource produces the following output properties:
- Id string
- The provider-assigned unique ID for this managed resource.
- Inbound
Policy stringId - The ID of the ingress firewall policy for the network ACL.
- Outbound
Policy stringId - The ID of the egress firewall policy for the network ACL.
- Ports List<string>
- A list of the port IDs of the subnet gateway.
- Status string
- The status of the network ACL.
- Id string
- The provider-assigned unique ID for this managed resource.
- Inbound
Policy stringId - The ID of the ingress firewall policy for the network ACL.
- Outbound
Policy stringId - The ID of the egress firewall policy for the network ACL.
- Ports []string
- A list of the port IDs of the subnet gateway.
- Status string
- The status of the network ACL.
- id String
- The provider-assigned unique ID for this managed resource.
- inbound
Policy StringId - The ID of the ingress firewall policy for the network ACL.
- outbound
Policy StringId - The ID of the egress firewall policy for the network ACL.
- ports List<String>
- A list of the port IDs of the subnet gateway.
- status String
- The status of the network ACL.
- id string
- The provider-assigned unique ID for this managed resource.
- inbound
Policy stringId - The ID of the ingress firewall policy for the network ACL.
- outbound
Policy stringId - The ID of the egress firewall policy for the network ACL.
- ports string[]
- A list of the port IDs of the subnet gateway.
- status string
- The status of the network ACL.
- id str
- The provider-assigned unique ID for this managed resource.
- inbound_
policy_ strid - The ID of the ingress firewall policy for the network ACL.
- outbound_
policy_ strid - The ID of the egress firewall policy for the network ACL.
- ports Sequence[str]
- A list of the port IDs of the subnet gateway.
- status str
- The status of the network ACL.
- id String
- The provider-assigned unique ID for this managed resource.
- inbound
Policy StringId - The ID of the ingress firewall policy for the network ACL.
- outbound
Policy StringId - The ID of the egress firewall policy for the network ACL.
- ports List<String>
- A list of the port IDs of the subnet gateway.
- status String
- The status of the network ACL.
Look up Existing NetworkAcl Resource
Get an existing NetworkAcl 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?: NetworkAclState, opts?: CustomResourceOptions): NetworkAcl
@staticmethod
def get(resource_name: str,
id: str,
opts: Optional[ResourceOptions] = None,
description: Optional[str] = None,
inbound_policy_id: Optional[str] = None,
inbound_rules: Optional[Sequence[str]] = None,
name: Optional[str] = None,
network_acl_id: Optional[str] = None,
outbound_policy_id: Optional[str] = None,
outbound_rules: Optional[Sequence[str]] = None,
ports: Optional[Sequence[str]] = None,
status: Optional[str] = None,
subnets: Optional[Sequence[str]] = None,
timeouts: Optional[NetworkAclTimeoutsArgs] = None) -> NetworkAcl
func GetNetworkAcl(ctx *Context, name string, id IDInput, state *NetworkAclState, opts ...ResourceOption) (*NetworkAcl, error)
public static NetworkAcl Get(string name, Input<string> id, NetworkAclState? state, CustomResourceOptions? opts = null)
public static NetworkAcl get(String name, Output<String> id, NetworkAclState state, CustomResourceOptions options)
resources: _: type: flexibleengine:NetworkAcl 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.
- Description string
- Specifies the supplementary information about the network ACL. This parameter can contain a maximum of 255 characters and cannot contain angle brackets (< or >).
- Inbound
Policy stringId - The ID of the ingress firewall policy for the network ACL.
- Inbound
Rules List<string> - A list of the IDs of ingress rules associated with the network ACL.
- Name string
- Specifies the network ACL name. This parameter can contain a maximum of 64 characters, which may consist of letters, digits, underscores (_), and hyphens (-).
- Network
Acl stringId - The ID of the network ACL.
- Outbound
Policy stringId - The ID of the egress firewall policy for the network ACL.
- Outbound
Rules List<string> - A list of the IDs of egress rules associated with the network ACL.
- Ports List<string>
- A list of the port IDs of the subnet gateway.
- Status string
- The status of the network ACL.
- Subnets List<string>
- A list of the IDs of networks associated with the network ACL.
- Timeouts
Network
Acl Timeouts
- Description string
- Specifies the supplementary information about the network ACL. This parameter can contain a maximum of 255 characters and cannot contain angle brackets (< or >).
- Inbound
Policy stringId - The ID of the ingress firewall policy for the network ACL.
- Inbound
Rules []string - A list of the IDs of ingress rules associated with the network ACL.
- Name string
- Specifies the network ACL name. This parameter can contain a maximum of 64 characters, which may consist of letters, digits, underscores (_), and hyphens (-).
- Network
Acl stringId - The ID of the network ACL.
- Outbound
Policy stringId - The ID of the egress firewall policy for the network ACL.
- Outbound
Rules []string - A list of the IDs of egress rules associated with the network ACL.
- Ports []string
- A list of the port IDs of the subnet gateway.
- Status string
- The status of the network ACL.
- Subnets []string
- A list of the IDs of networks associated with the network ACL.
- Timeouts
Network
Acl Timeouts Args
- description String
- Specifies the supplementary information about the network ACL. This parameter can contain a maximum of 255 characters and cannot contain angle brackets (< or >).
- inbound
Policy StringId - The ID of the ingress firewall policy for the network ACL.
- inbound
Rules List<String> - A list of the IDs of ingress rules associated with the network ACL.
- name String
- Specifies the network ACL name. This parameter can contain a maximum of 64 characters, which may consist of letters, digits, underscores (_), and hyphens (-).
- network
Acl StringId - The ID of the network ACL.
- outbound
Policy StringId - The ID of the egress firewall policy for the network ACL.
- outbound
Rules List<String> - A list of the IDs of egress rules associated with the network ACL.
- ports List<String>
- A list of the port IDs of the subnet gateway.
- status String
- The status of the network ACL.
- subnets List<String>
- A list of the IDs of networks associated with the network ACL.
- timeouts
Network
Acl Timeouts
- description string
- Specifies the supplementary information about the network ACL. This parameter can contain a maximum of 255 characters and cannot contain angle brackets (< or >).
- inbound
Policy stringId - The ID of the ingress firewall policy for the network ACL.
- inbound
Rules string[] - A list of the IDs of ingress rules associated with the network ACL.
- name string
- Specifies the network ACL name. This parameter can contain a maximum of 64 characters, which may consist of letters, digits, underscores (_), and hyphens (-).
- network
Acl stringId - The ID of the network ACL.
- outbound
Policy stringId - The ID of the egress firewall policy for the network ACL.
- outbound
Rules string[] - A list of the IDs of egress rules associated with the network ACL.
- ports string[]
- A list of the port IDs of the subnet gateway.
- status string
- The status of the network ACL.
- subnets string[]
- A list of the IDs of networks associated with the network ACL.
- timeouts
Network
Acl Timeouts
- description str
- Specifies the supplementary information about the network ACL. This parameter can contain a maximum of 255 characters and cannot contain angle brackets (< or >).
- inbound_
policy_ strid - The ID of the ingress firewall policy for the network ACL.
- inbound_
rules Sequence[str] - A list of the IDs of ingress rules associated with the network ACL.
- name str
- Specifies the network ACL name. This parameter can contain a maximum of 64 characters, which may consist of letters, digits, underscores (_), and hyphens (-).
- network_
acl_ strid - The ID of the network ACL.
- outbound_
policy_ strid - The ID of the egress firewall policy for the network ACL.
- outbound_
rules Sequence[str] - A list of the IDs of egress rules associated with the network ACL.
- ports Sequence[str]
- A list of the port IDs of the subnet gateway.
- status str
- The status of the network ACL.
- subnets Sequence[str]
- A list of the IDs of networks associated with the network ACL.
- timeouts
Network
Acl Timeouts Args
- description String
- Specifies the supplementary information about the network ACL. This parameter can contain a maximum of 255 characters and cannot contain angle brackets (< or >).
- inbound
Policy StringId - The ID of the ingress firewall policy for the network ACL.
- inbound
Rules List<String> - A list of the IDs of ingress rules associated with the network ACL.
- name String
- Specifies the network ACL name. This parameter can contain a maximum of 64 characters, which may consist of letters, digits, underscores (_), and hyphens (-).
- network
Acl StringId - The ID of the network ACL.
- outbound
Policy StringId - The ID of the egress firewall policy for the network ACL.
- outbound
Rules List<String> - A list of the IDs of egress rules associated with the network ACL.
- ports List<String>
- A list of the port IDs of the subnet gateway.
- status String
- The status of the network ACL.
- subnets List<String>
- A list of the IDs of networks associated with the network ACL.
- timeouts Property Map
Supporting Types
NetworkAclTimeouts, NetworkAclTimeoutsArgs
Package Details
- Repository
- flexibleengine flexibleenginecloud/terraform-provider-flexibleengine
- License
- Notes
- This Pulumi package is based on the
flexibleengine
Terraform Provider.