nomad.ExternalVolume
Explore with Pulumi AI
Example Usage
Creating a volume:
import * as pulumi from "@pulumi/pulumi";
import * as nomad from "@pulumi/nomad";
// It can sometimes be helpful to wait for a particular plugin to be available
const ebs = nomad.getPlugin({
pluginId: "aws-ebs0",
waitForHealthy: true,
});
const mysqlVolume = new nomad.ExternalVolume("mysql_volume", {
type: "csi",
pluginId: "aws-ebs0",
volumeId: "mysql_volume",
name: "mysql_volume",
capacityMin: "10GiB",
capacityMax: "20GiB",
capabilities: [{
accessMode: "single-node-writer",
attachmentMode: "file-system",
}],
mountOptions: {
fsType: "ext4",
},
topologyRequest: {
required: {
topologies: [
{
segments: {
rack: "R1",
zone: "us-east-1a",
},
},
{
segments: {
rack: "R2",
},
},
],
},
},
}, {
dependsOn: [ebs],
});
import pulumi
import pulumi_nomad as nomad
# It can sometimes be helpful to wait for a particular plugin to be available
ebs = nomad.get_plugin(plugin_id="aws-ebs0",
wait_for_healthy=True)
mysql_volume = nomad.ExternalVolume("mysql_volume",
type="csi",
plugin_id="aws-ebs0",
volume_id="mysql_volume",
name="mysql_volume",
capacity_min="10GiB",
capacity_max="20GiB",
capabilities=[{
"access_mode": "single-node-writer",
"attachment_mode": "file-system",
}],
mount_options={
"fs_type": "ext4",
},
topology_request={
"required": {
"topologies": [
{
"segments": {
"rack": "R1",
"zone": "us-east-1a",
},
},
{
"segments": {
"rack": "R2",
},
},
],
},
},
opts = pulumi.ResourceOptions(depends_on=[ebs]))
package main
import (
"github.com/pulumi/pulumi-nomad/sdk/v2/go/nomad"
"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
)
func main() {
pulumi.Run(func(ctx *pulumi.Context) error {
// It can sometimes be helpful to wait for a particular plugin to be available
ebs, err := nomad.GetPlugin(ctx, &nomad.GetPluginArgs{
PluginId: "aws-ebs0",
WaitForHealthy: pulumi.BoolRef(true),
}, nil)
if err != nil {
return err
}
_, err = nomad.NewExternalVolume(ctx, "mysql_volume", &nomad.ExternalVolumeArgs{
Type: pulumi.String("csi"),
PluginId: pulumi.String("aws-ebs0"),
VolumeId: pulumi.String("mysql_volume"),
Name: pulumi.String("mysql_volume"),
CapacityMin: pulumi.String("10GiB"),
CapacityMax: pulumi.String("20GiB"),
Capabilities: nomad.ExternalVolumeCapabilityArray{
&nomad.ExternalVolumeCapabilityArgs{
AccessMode: pulumi.String("single-node-writer"),
AttachmentMode: pulumi.String("file-system"),
},
},
MountOptions: &nomad.ExternalVolumeMountOptionsArgs{
FsType: pulumi.String("ext4"),
},
TopologyRequest: &nomad.ExternalVolumeTopologyRequestArgs{
Required: &nomad.ExternalVolumeTopologyRequestRequiredArgs{
Topologies: nomad.ExternalVolumeTopologyRequestRequiredTopologyArray{
&nomad.ExternalVolumeTopologyRequestRequiredTopologyArgs{
Segments: pulumi.StringMap{
"rack": pulumi.String("R1"),
"zone": pulumi.String("us-east-1a"),
},
},
&nomad.ExternalVolumeTopologyRequestRequiredTopologyArgs{
Segments: pulumi.StringMap{
"rack": pulumi.String("R2"),
},
},
},
},
},
}, pulumi.DependsOn([]pulumi.Resource{
ebs,
}))
if err != nil {
return err
}
return nil
})
}
using System.Collections.Generic;
using System.Linq;
using Pulumi;
using Nomad = Pulumi.Nomad;
return await Deployment.RunAsync(() =>
{
// It can sometimes be helpful to wait for a particular plugin to be available
var ebs = Nomad.GetPlugin.Invoke(new()
{
PluginId = "aws-ebs0",
WaitForHealthy = true,
});
var mysqlVolume = new Nomad.ExternalVolume("mysql_volume", new()
{
Type = "csi",
PluginId = "aws-ebs0",
VolumeId = "mysql_volume",
Name = "mysql_volume",
CapacityMin = "10GiB",
CapacityMax = "20GiB",
Capabilities = new[]
{
new Nomad.Inputs.ExternalVolumeCapabilityArgs
{
AccessMode = "single-node-writer",
AttachmentMode = "file-system",
},
},
MountOptions = new Nomad.Inputs.ExternalVolumeMountOptionsArgs
{
FsType = "ext4",
},
TopologyRequest = new Nomad.Inputs.ExternalVolumeTopologyRequestArgs
{
Required = new Nomad.Inputs.ExternalVolumeTopologyRequestRequiredArgs
{
Topologies = new[]
{
new Nomad.Inputs.ExternalVolumeTopologyRequestRequiredTopologyArgs
{
Segments =
{
{ "rack", "R1" },
{ "zone", "us-east-1a" },
},
},
new Nomad.Inputs.ExternalVolumeTopologyRequestRequiredTopologyArgs
{
Segments =
{
{ "rack", "R2" },
},
},
},
},
},
}, new CustomResourceOptions
{
DependsOn =
{
ebs,
},
});
});
package generated_program;
import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.nomad.NomadFunctions;
import com.pulumi.nomad.inputs.GetPluginArgs;
import com.pulumi.nomad.ExternalVolume;
import com.pulumi.nomad.ExternalVolumeArgs;
import com.pulumi.nomad.inputs.ExternalVolumeCapabilityArgs;
import com.pulumi.nomad.inputs.ExternalVolumeMountOptionsArgs;
import com.pulumi.nomad.inputs.ExternalVolumeTopologyRequestArgs;
import com.pulumi.nomad.inputs.ExternalVolumeTopologyRequestRequiredArgs;
import com.pulumi.resources.CustomResourceOptions;
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) {
// It can sometimes be helpful to wait for a particular plugin to be available
final var ebs = NomadFunctions.getPlugin(GetPluginArgs.builder()
.pluginId("aws-ebs0")
.waitForHealthy(true)
.build());
var mysqlVolume = new ExternalVolume("mysqlVolume", ExternalVolumeArgs.builder()
.type("csi")
.pluginId("aws-ebs0")
.volumeId("mysql_volume")
.name("mysql_volume")
.capacityMin("10GiB")
.capacityMax("20GiB")
.capabilities(ExternalVolumeCapabilityArgs.builder()
.accessMode("single-node-writer")
.attachmentMode("file-system")
.build())
.mountOptions(ExternalVolumeMountOptionsArgs.builder()
.fsType("ext4")
.build())
.topologyRequest(ExternalVolumeTopologyRequestArgs.builder()
.required(ExternalVolumeTopologyRequestRequiredArgs.builder()
.topologies(
ExternalVolumeTopologyRequestRequiredTopologyArgs.builder()
.segments(Map.ofEntries(
Map.entry("rack", "R1"),
Map.entry("zone", "us-east-1a")
))
.build(),
ExternalVolumeTopologyRequestRequiredTopologyArgs.builder()
.segments(Map.of("rack", "R2"))
.build())
.build())
.build())
.build(), CustomResourceOptions.builder()
.dependsOn(ebs.applyValue(getPluginResult -> getPluginResult))
.build());
}
}
resources:
mysqlVolume:
type: nomad:ExternalVolume
name: mysql_volume
properties:
type: csi
pluginId: aws-ebs0
volumeId: mysql_volume
name: mysql_volume
capacityMin: 10GiB
capacityMax: 20GiB
capabilities:
- accessMode: single-node-writer
attachmentMode: file-system
mountOptions:
fsType: ext4
topologyRequest:
required:
topologies:
- segments:
rack: R1
zone: us-east-1a
- segments:
rack: R2
options:
dependson:
- ${ebs}
variables:
# It can sometimes be helpful to wait for a particular plugin to be available
ebs:
fn::invoke:
Function: nomad:getPlugin
Arguments:
pluginId: aws-ebs0
waitForHealthy: true
Create ExternalVolume Resource
Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.
Constructor syntax
new ExternalVolume(name: string, args: ExternalVolumeArgs, opts?: CustomResourceOptions);
@overload
def ExternalVolume(resource_name: str,
args: ExternalVolumeArgs,
opts: Optional[ResourceOptions] = None)
@overload
def ExternalVolume(resource_name: str,
opts: Optional[ResourceOptions] = None,
capabilities: Optional[Sequence[ExternalVolumeCapabilityArgs]] = None,
volume_id: Optional[str] = None,
plugin_id: Optional[str] = None,
namespace: Optional[str] = None,
mount_options: Optional[ExternalVolumeMountOptionsArgs] = None,
name: Optional[str] = None,
clone_id: Optional[str] = None,
parameters: Optional[Mapping[str, str]] = None,
capacity_min: Optional[str] = None,
secrets: Optional[Mapping[str, str]] = None,
snapshot_id: Optional[str] = None,
topology_request: Optional[ExternalVolumeTopologyRequestArgs] = None,
type: Optional[str] = None,
capacity_max: Optional[str] = None)
func NewExternalVolume(ctx *Context, name string, args ExternalVolumeArgs, opts ...ResourceOption) (*ExternalVolume, error)
public ExternalVolume(string name, ExternalVolumeArgs args, CustomResourceOptions? opts = null)
public ExternalVolume(String name, ExternalVolumeArgs args)
public ExternalVolume(String name, ExternalVolumeArgs args, CustomResourceOptions options)
type: nomad:ExternalVolume
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 ExternalVolumeArgs
- 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 ExternalVolumeArgs
- 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 ExternalVolumeArgs
- The arguments to resource properties.
- opts ResourceOption
- Bag of options to control resource's behavior.
- name string
- The unique name of the resource.
- args ExternalVolumeArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- name String
- The unique name of the resource.
- args ExternalVolumeArgs
- 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 externalVolumeResource = new Nomad.ExternalVolume("externalVolumeResource", new()
{
Capabilities = new[]
{
new Nomad.Inputs.ExternalVolumeCapabilityArgs
{
AccessMode = "string",
AttachmentMode = "string",
},
},
VolumeId = "string",
PluginId = "string",
Namespace = "string",
MountOptions = new Nomad.Inputs.ExternalVolumeMountOptionsArgs
{
FsType = "string",
MountFlags = new[]
{
"string",
},
},
Name = "string",
CloneId = "string",
Parameters =
{
{ "string", "string" },
},
CapacityMin = "string",
Secrets =
{
{ "string", "string" },
},
SnapshotId = "string",
TopologyRequest = new Nomad.Inputs.ExternalVolumeTopologyRequestArgs
{
Preferred = new Nomad.Inputs.ExternalVolumeTopologyRequestPreferredArgs
{
Topologies = new[]
{
new Nomad.Inputs.ExternalVolumeTopologyRequestPreferredTopologyArgs
{
Segments =
{
{ "string", "string" },
},
},
},
},
Required = new Nomad.Inputs.ExternalVolumeTopologyRequestRequiredArgs
{
Topologies = new[]
{
new Nomad.Inputs.ExternalVolumeTopologyRequestRequiredTopologyArgs
{
Segments =
{
{ "string", "string" },
},
},
},
},
},
Type = "string",
CapacityMax = "string",
});
example, err := nomad.NewExternalVolume(ctx, "externalVolumeResource", &nomad.ExternalVolumeArgs{
Capabilities: nomad.ExternalVolumeCapabilityArray{
&nomad.ExternalVolumeCapabilityArgs{
AccessMode: pulumi.String("string"),
AttachmentMode: pulumi.String("string"),
},
},
VolumeId: pulumi.String("string"),
PluginId: pulumi.String("string"),
Namespace: pulumi.String("string"),
MountOptions: &nomad.ExternalVolumeMountOptionsArgs{
FsType: pulumi.String("string"),
MountFlags: pulumi.StringArray{
pulumi.String("string"),
},
},
Name: pulumi.String("string"),
CloneId: pulumi.String("string"),
Parameters: pulumi.StringMap{
"string": pulumi.String("string"),
},
CapacityMin: pulumi.String("string"),
Secrets: pulumi.StringMap{
"string": pulumi.String("string"),
},
SnapshotId: pulumi.String("string"),
TopologyRequest: &nomad.ExternalVolumeTopologyRequestArgs{
Preferred: &nomad.ExternalVolumeTopologyRequestPreferredArgs{
Topologies: nomad.ExternalVolumeTopologyRequestPreferredTopologyArray{
&nomad.ExternalVolumeTopologyRequestPreferredTopologyArgs{
Segments: pulumi.StringMap{
"string": pulumi.String("string"),
},
},
},
},
Required: &nomad.ExternalVolumeTopologyRequestRequiredArgs{
Topologies: nomad.ExternalVolumeTopologyRequestRequiredTopologyArray{
&nomad.ExternalVolumeTopologyRequestRequiredTopologyArgs{
Segments: pulumi.StringMap{
"string": pulumi.String("string"),
},
},
},
},
},
Type: pulumi.String("string"),
CapacityMax: pulumi.String("string"),
})
var externalVolumeResource = new ExternalVolume("externalVolumeResource", ExternalVolumeArgs.builder()
.capabilities(ExternalVolumeCapabilityArgs.builder()
.accessMode("string")
.attachmentMode("string")
.build())
.volumeId("string")
.pluginId("string")
.namespace("string")
.mountOptions(ExternalVolumeMountOptionsArgs.builder()
.fsType("string")
.mountFlags("string")
.build())
.name("string")
.cloneId("string")
.parameters(Map.of("string", "string"))
.capacityMin("string")
.secrets(Map.of("string", "string"))
.snapshotId("string")
.topologyRequest(ExternalVolumeTopologyRequestArgs.builder()
.preferred(ExternalVolumeTopologyRequestPreferredArgs.builder()
.topologies(ExternalVolumeTopologyRequestPreferredTopologyArgs.builder()
.segments(Map.of("string", "string"))
.build())
.build())
.required(ExternalVolumeTopologyRequestRequiredArgs.builder()
.topologies(ExternalVolumeTopologyRequestRequiredTopologyArgs.builder()
.segments(Map.of("string", "string"))
.build())
.build())
.build())
.type("string")
.capacityMax("string")
.build());
external_volume_resource = nomad.ExternalVolume("externalVolumeResource",
capabilities=[nomad.ExternalVolumeCapabilityArgs(
access_mode="string",
attachment_mode="string",
)],
volume_id="string",
plugin_id="string",
namespace="string",
mount_options=nomad.ExternalVolumeMountOptionsArgs(
fs_type="string",
mount_flags=["string"],
),
name="string",
clone_id="string",
parameters={
"string": "string",
},
capacity_min="string",
secrets={
"string": "string",
},
snapshot_id="string",
topology_request=nomad.ExternalVolumeTopologyRequestArgs(
preferred=nomad.ExternalVolumeTopologyRequestPreferredArgs(
topologies=[nomad.ExternalVolumeTopologyRequestPreferredTopologyArgs(
segments={
"string": "string",
},
)],
),
required=nomad.ExternalVolumeTopologyRequestRequiredArgs(
topologies=[nomad.ExternalVolumeTopologyRequestRequiredTopologyArgs(
segments={
"string": "string",
},
)],
),
),
type="string",
capacity_max="string")
const externalVolumeResource = new nomad.ExternalVolume("externalVolumeResource", {
capabilities: [{
accessMode: "string",
attachmentMode: "string",
}],
volumeId: "string",
pluginId: "string",
namespace: "string",
mountOptions: {
fsType: "string",
mountFlags: ["string"],
},
name: "string",
cloneId: "string",
parameters: {
string: "string",
},
capacityMin: "string",
secrets: {
string: "string",
},
snapshotId: "string",
topologyRequest: {
preferred: {
topologies: [{
segments: {
string: "string",
},
}],
},
required: {
topologies: [{
segments: {
string: "string",
},
}],
},
},
type: "string",
capacityMax: "string",
});
type: nomad:ExternalVolume
properties:
capabilities:
- accessMode: string
attachmentMode: string
capacityMax: string
capacityMin: string
cloneId: string
mountOptions:
fsType: string
mountFlags:
- string
name: string
namespace: string
parameters:
string: string
pluginId: string
secrets:
string: string
snapshotId: string
topologyRequest:
preferred:
topologies:
- segments:
string: string
required:
topologies:
- segments:
string: string
type: string
volumeId: string
ExternalVolume Resource Properties
To learn more about resource properties and how to use them, see Inputs and Outputs in the Architecture and Concepts docs.
Inputs
The ExternalVolume resource accepts the following input properties:
- Capabilities
List<External
Volume Capability> (``Capability``: <required>)
- Options for validating the capability of a volume.- Plugin
Id string (string: <required>)
- The ID of the Nomad plugin for registering this volume.- Volume
Id string (string: <required>)
- The unique ID of the volume.- Capacity
Max string (string: <optional>)
- Option to signal a maximum volume size. This may not be supported by all storage providers.- Capacity
Min string (string: <optional>)
- Option to signal a minimum volume size. This may not be supported by all storage providers.- Clone
Id string (string: <optional>)
- The external ID of an existing volume to restore. If ommited, the volume will be created from scratch. Conflicts withsnapshot_id
.- Mount
Options ExternalVolume Mount Options (block: optional)
Options for mountingblock-device
volumes without a pre-formatted file system.- Name string
(string: <required>)
- The display name for the volume.- Namespace string
(string: "default")
- The namespace in which to register the volume.- Parameters Dictionary<string, string>
(map[string]string: optional)
An optional key-value map of strings passed directly to the CSI plugin to configure the volume.- Secrets Dictionary<string, string>
(map[string]string: optional)
An optional key-value map of strings used as credentials for publishing and unpublishing volumes.- Snapshot
Id string (string: <optional>)
- The external ID of a snapshot to restore. If ommited, the volume will be created from scratch. Conflicts withclone_id
.- Topology
Request ExternalVolume Topology Request (``TopologyRequest``: <optional>)
- Specify locations (region, zone, rack, etc.) where the provisioned volume is accessible from.- Type string
(string: <required>)
- The type of the volume. Currently, onlycsi
is supported.
- Capabilities
[]External
Volume Capability Args (``Capability``: <required>)
- Options for validating the capability of a volume.- Plugin
Id string (string: <required>)
- The ID of the Nomad plugin for registering this volume.- Volume
Id string (string: <required>)
- The unique ID of the volume.- Capacity
Max string (string: <optional>)
- Option to signal a maximum volume size. This may not be supported by all storage providers.- Capacity
Min string (string: <optional>)
- Option to signal a minimum volume size. This may not be supported by all storage providers.- Clone
Id string (string: <optional>)
- The external ID of an existing volume to restore. If ommited, the volume will be created from scratch. Conflicts withsnapshot_id
.- Mount
Options ExternalVolume Mount Options Args (block: optional)
Options for mountingblock-device
volumes without a pre-formatted file system.- Name string
(string: <required>)
- The display name for the volume.- Namespace string
(string: "default")
- The namespace in which to register the volume.- Parameters map[string]string
(map[string]string: optional)
An optional key-value map of strings passed directly to the CSI plugin to configure the volume.- Secrets map[string]string
(map[string]string: optional)
An optional key-value map of strings used as credentials for publishing and unpublishing volumes.- Snapshot
Id string (string: <optional>)
- The external ID of a snapshot to restore. If ommited, the volume will be created from scratch. Conflicts withclone_id
.- Topology
Request ExternalVolume Topology Request Args (``TopologyRequest``: <optional>)
- Specify locations (region, zone, rack, etc.) where the provisioned volume is accessible from.- Type string
(string: <required>)
- The type of the volume. Currently, onlycsi
is supported.
- capabilities
List<External
Volume Capability> (``Capability``: <required>)
- Options for validating the capability of a volume.- plugin
Id String (string: <required>)
- The ID of the Nomad plugin for registering this volume.- volume
Id String (string: <required>)
- The unique ID of the volume.- capacity
Max String (string: <optional>)
- Option to signal a maximum volume size. This may not be supported by all storage providers.- capacity
Min String (string: <optional>)
- Option to signal a minimum volume size. This may not be supported by all storage providers.- clone
Id String (string: <optional>)
- The external ID of an existing volume to restore. If ommited, the volume will be created from scratch. Conflicts withsnapshot_id
.- mount
Options ExternalVolume Mount Options (block: optional)
Options for mountingblock-device
volumes without a pre-formatted file system.- name String
(string: <required>)
- The display name for the volume.- namespace String
(string: "default")
- The namespace in which to register the volume.- parameters Map<String,String>
(map[string]string: optional)
An optional key-value map of strings passed directly to the CSI plugin to configure the volume.- secrets Map<String,String>
(map[string]string: optional)
An optional key-value map of strings used as credentials for publishing and unpublishing volumes.- snapshot
Id String (string: <optional>)
- The external ID of a snapshot to restore. If ommited, the volume will be created from scratch. Conflicts withclone_id
.- topology
Request ExternalVolume Topology Request (``TopologyRequest``: <optional>)
- Specify locations (region, zone, rack, etc.) where the provisioned volume is accessible from.- type String
(string: <required>)
- The type of the volume. Currently, onlycsi
is supported.
- capabilities
External
Volume Capability[] (``Capability``: <required>)
- Options for validating the capability of a volume.- plugin
Id string (string: <required>)
- The ID of the Nomad plugin for registering this volume.- volume
Id string (string: <required>)
- The unique ID of the volume.- capacity
Max string (string: <optional>)
- Option to signal a maximum volume size. This may not be supported by all storage providers.- capacity
Min string (string: <optional>)
- Option to signal a minimum volume size. This may not be supported by all storage providers.- clone
Id string (string: <optional>)
- The external ID of an existing volume to restore. If ommited, the volume will be created from scratch. Conflicts withsnapshot_id
.- mount
Options ExternalVolume Mount Options (block: optional)
Options for mountingblock-device
volumes without a pre-formatted file system.- name string
(string: <required>)
- The display name for the volume.- namespace string
(string: "default")
- The namespace in which to register the volume.- parameters {[key: string]: string}
(map[string]string: optional)
An optional key-value map of strings passed directly to the CSI plugin to configure the volume.- secrets {[key: string]: string}
(map[string]string: optional)
An optional key-value map of strings used as credentials for publishing and unpublishing volumes.- snapshot
Id string (string: <optional>)
- The external ID of a snapshot to restore. If ommited, the volume will be created from scratch. Conflicts withclone_id
.- topology
Request ExternalVolume Topology Request (``TopologyRequest``: <optional>)
- Specify locations (region, zone, rack, etc.) where the provisioned volume is accessible from.- type string
(string: <required>)
- The type of the volume. Currently, onlycsi
is supported.
- capabilities
Sequence[External
Volume Capability Args] (``Capability``: <required>)
- Options for validating the capability of a volume.- plugin_
id str (string: <required>)
- The ID of the Nomad plugin for registering this volume.- volume_
id str (string: <required>)
- The unique ID of the volume.- capacity_
max str (string: <optional>)
- Option to signal a maximum volume size. This may not be supported by all storage providers.- capacity_
min str (string: <optional>)
- Option to signal a minimum volume size. This may not be supported by all storage providers.- clone_
id str (string: <optional>)
- The external ID of an existing volume to restore. If ommited, the volume will be created from scratch. Conflicts withsnapshot_id
.- mount_
options ExternalVolume Mount Options Args (block: optional)
Options for mountingblock-device
volumes without a pre-formatted file system.- name str
(string: <required>)
- The display name for the volume.- namespace str
(string: "default")
- The namespace in which to register the volume.- parameters Mapping[str, str]
(map[string]string: optional)
An optional key-value map of strings passed directly to the CSI plugin to configure the volume.- secrets Mapping[str, str]
(map[string]string: optional)
An optional key-value map of strings used as credentials for publishing and unpublishing volumes.- snapshot_
id str (string: <optional>)
- The external ID of a snapshot to restore. If ommited, the volume will be created from scratch. Conflicts withclone_id
.- topology_
request ExternalVolume Topology Request Args (``TopologyRequest``: <optional>)
- Specify locations (region, zone, rack, etc.) where the provisioned volume is accessible from.- type str
(string: <required>)
- The type of the volume. Currently, onlycsi
is supported.
- capabilities List<Property Map>
(``Capability``: <required>)
- Options for validating the capability of a volume.- plugin
Id String (string: <required>)
- The ID of the Nomad plugin for registering this volume.- volume
Id String (string: <required>)
- The unique ID of the volume.- capacity
Max String (string: <optional>)
- Option to signal a maximum volume size. This may not be supported by all storage providers.- capacity
Min String (string: <optional>)
- Option to signal a minimum volume size. This may not be supported by all storage providers.- clone
Id String (string: <optional>)
- The external ID of an existing volume to restore. If ommited, the volume will be created from scratch. Conflicts withsnapshot_id
.- mount
Options Property Map (block: optional)
Options for mountingblock-device
volumes without a pre-formatted file system.- name String
(string: <required>)
- The display name for the volume.- namespace String
(string: "default")
- The namespace in which to register the volume.- parameters Map<String>
(map[string]string: optional)
An optional key-value map of strings passed directly to the CSI plugin to configure the volume.- secrets Map<String>
(map[string]string: optional)
An optional key-value map of strings used as credentials for publishing and unpublishing volumes.- snapshot
Id String (string: <optional>)
- The external ID of a snapshot to restore. If ommited, the volume will be created from scratch. Conflicts withclone_id
.- topology
Request Property Map (``TopologyRequest``: <optional>)
- Specify locations (region, zone, rack, etc.) where the provisioned volume is accessible from.- type String
(string: <required>)
- The type of the volume. Currently, onlycsi
is supported.
Outputs
All input properties are implicitly available as output properties. Additionally, the ExternalVolume resource produces the following output properties:
- Controller
Required bool - Controllers
Expected int - Controllers
Healthy int - Id string
- The provider-assigned unique ID for this managed resource.
- Nodes
Expected int - Nodes
Healthy int - Plugin
Provider string - Plugin
Provider stringVersion - Schedulable bool
- Topologies
List<External
Volume Topology>
- Controller
Required bool - Controllers
Expected int - Controllers
Healthy int - Id string
- The provider-assigned unique ID for this managed resource.
- Nodes
Expected int - Nodes
Healthy int - Plugin
Provider string - Plugin
Provider stringVersion - Schedulable bool
- Topologies
[]External
Volume Topology
- controller
Required Boolean - controllers
Expected Integer - controllers
Healthy Integer - id String
- The provider-assigned unique ID for this managed resource.
- nodes
Expected Integer - nodes
Healthy Integer - plugin
Provider String - plugin
Provider StringVersion - schedulable Boolean
- topologies
List<External
Volume Topology>
- controller
Required boolean - controllers
Expected number - controllers
Healthy number - id string
- The provider-assigned unique ID for this managed resource.
- nodes
Expected number - nodes
Healthy number - plugin
Provider string - plugin
Provider stringVersion - schedulable boolean
- topologies
External
Volume Topology[]
- controller_
required bool - controllers_
expected int - controllers_
healthy int - id str
- The provider-assigned unique ID for this managed resource.
- nodes_
expected int - nodes_
healthy int - plugin_
provider str - plugin_
provider_ strversion - schedulable bool
- topologies
Sequence[External
Volume Topology]
- controller
Required Boolean - controllers
Expected Number - controllers
Healthy Number - id String
- The provider-assigned unique ID for this managed resource.
- nodes
Expected Number - nodes
Healthy Number - plugin
Provider String - plugin
Provider StringVersion - schedulable Boolean
- topologies List<Property Map>
Look up Existing ExternalVolume Resource
Get an existing ExternalVolume 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?: ExternalVolumeState, opts?: CustomResourceOptions): ExternalVolume
@staticmethod
def get(resource_name: str,
id: str,
opts: Optional[ResourceOptions] = None,
capabilities: Optional[Sequence[ExternalVolumeCapabilityArgs]] = None,
capacity_max: Optional[str] = None,
capacity_min: Optional[str] = None,
clone_id: Optional[str] = None,
controller_required: Optional[bool] = None,
controllers_expected: Optional[int] = None,
controllers_healthy: Optional[int] = None,
mount_options: Optional[ExternalVolumeMountOptionsArgs] = None,
name: Optional[str] = None,
namespace: Optional[str] = None,
nodes_expected: Optional[int] = None,
nodes_healthy: Optional[int] = None,
parameters: Optional[Mapping[str, str]] = None,
plugin_id: Optional[str] = None,
plugin_provider: Optional[str] = None,
plugin_provider_version: Optional[str] = None,
schedulable: Optional[bool] = None,
secrets: Optional[Mapping[str, str]] = None,
snapshot_id: Optional[str] = None,
topologies: Optional[Sequence[ExternalVolumeTopologyArgs]] = None,
topology_request: Optional[ExternalVolumeTopologyRequestArgs] = None,
type: Optional[str] = None,
volume_id: Optional[str] = None) -> ExternalVolume
func GetExternalVolume(ctx *Context, name string, id IDInput, state *ExternalVolumeState, opts ...ResourceOption) (*ExternalVolume, error)
public static ExternalVolume Get(string name, Input<string> id, ExternalVolumeState? state, CustomResourceOptions? opts = null)
public static ExternalVolume get(String name, Output<String> id, ExternalVolumeState state, CustomResourceOptions options)
Resource lookup is not supported in YAML
- 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.
- Capabilities
List<External
Volume Capability> (``Capability``: <required>)
- Options for validating the capability of a volume.- Capacity
Max string (string: <optional>)
- Option to signal a maximum volume size. This may not be supported by all storage providers.- Capacity
Min string (string: <optional>)
- Option to signal a minimum volume size. This may not be supported by all storage providers.- Clone
Id string (string: <optional>)
- The external ID of an existing volume to restore. If ommited, the volume will be created from scratch. Conflicts withsnapshot_id
.- Controller
Required bool - Controllers
Expected int - Controllers
Healthy int - Mount
Options ExternalVolume Mount Options (block: optional)
Options for mountingblock-device
volumes without a pre-formatted file system.- Name string
(string: <required>)
- The display name for the volume.- Namespace string
(string: "default")
- The namespace in which to register the volume.- Nodes
Expected int - Nodes
Healthy int - Parameters Dictionary<string, string>
(map[string]string: optional)
An optional key-value map of strings passed directly to the CSI plugin to configure the volume.- Plugin
Id string (string: <required>)
- The ID of the Nomad plugin for registering this volume.- Plugin
Provider string - Plugin
Provider stringVersion - Schedulable bool
- Secrets Dictionary<string, string>
(map[string]string: optional)
An optional key-value map of strings used as credentials for publishing and unpublishing volumes.- Snapshot
Id string (string: <optional>)
- The external ID of a snapshot to restore. If ommited, the volume will be created from scratch. Conflicts withclone_id
.- Topologies
List<External
Volume Topology> - Topology
Request ExternalVolume Topology Request (``TopologyRequest``: <optional>)
- Specify locations (region, zone, rack, etc.) where the provisioned volume is accessible from.- Type string
(string: <required>)
- The type of the volume. Currently, onlycsi
is supported.- Volume
Id string (string: <required>)
- The unique ID of the volume.
- Capabilities
[]External
Volume Capability Args (``Capability``: <required>)
- Options for validating the capability of a volume.- Capacity
Max string (string: <optional>)
- Option to signal a maximum volume size. This may not be supported by all storage providers.- Capacity
Min string (string: <optional>)
- Option to signal a minimum volume size. This may not be supported by all storage providers.- Clone
Id string (string: <optional>)
- The external ID of an existing volume to restore. If ommited, the volume will be created from scratch. Conflicts withsnapshot_id
.- Controller
Required bool - Controllers
Expected int - Controllers
Healthy int - Mount
Options ExternalVolume Mount Options Args (block: optional)
Options for mountingblock-device
volumes without a pre-formatted file system.- Name string
(string: <required>)
- The display name for the volume.- Namespace string
(string: "default")
- The namespace in which to register the volume.- Nodes
Expected int - Nodes
Healthy int - Parameters map[string]string
(map[string]string: optional)
An optional key-value map of strings passed directly to the CSI plugin to configure the volume.- Plugin
Id string (string: <required>)
- The ID of the Nomad plugin for registering this volume.- Plugin
Provider string - Plugin
Provider stringVersion - Schedulable bool
- Secrets map[string]string
(map[string]string: optional)
An optional key-value map of strings used as credentials for publishing and unpublishing volumes.- Snapshot
Id string (string: <optional>)
- The external ID of a snapshot to restore. If ommited, the volume will be created from scratch. Conflicts withclone_id
.- Topologies
[]External
Volume Topology Args - Topology
Request ExternalVolume Topology Request Args (``TopologyRequest``: <optional>)
- Specify locations (region, zone, rack, etc.) where the provisioned volume is accessible from.- Type string
(string: <required>)
- The type of the volume. Currently, onlycsi
is supported.- Volume
Id string (string: <required>)
- The unique ID of the volume.
- capabilities
List<External
Volume Capability> (``Capability``: <required>)
- Options for validating the capability of a volume.- capacity
Max String (string: <optional>)
- Option to signal a maximum volume size. This may not be supported by all storage providers.- capacity
Min String (string: <optional>)
- Option to signal a minimum volume size. This may not be supported by all storage providers.- clone
Id String (string: <optional>)
- The external ID of an existing volume to restore. If ommited, the volume will be created from scratch. Conflicts withsnapshot_id
.- controller
Required Boolean - controllers
Expected Integer - controllers
Healthy Integer - mount
Options ExternalVolume Mount Options (block: optional)
Options for mountingblock-device
volumes without a pre-formatted file system.- name String
(string: <required>)
- The display name for the volume.- namespace String
(string: "default")
- The namespace in which to register the volume.- nodes
Expected Integer - nodes
Healthy Integer - parameters Map<String,String>
(map[string]string: optional)
An optional key-value map of strings passed directly to the CSI plugin to configure the volume.- plugin
Id String (string: <required>)
- The ID of the Nomad plugin for registering this volume.- plugin
Provider String - plugin
Provider StringVersion - schedulable Boolean
- secrets Map<String,String>
(map[string]string: optional)
An optional key-value map of strings used as credentials for publishing and unpublishing volumes.- snapshot
Id String (string: <optional>)
- The external ID of a snapshot to restore. If ommited, the volume will be created from scratch. Conflicts withclone_id
.- topologies
List<External
Volume Topology> - topology
Request ExternalVolume Topology Request (``TopologyRequest``: <optional>)
- Specify locations (region, zone, rack, etc.) where the provisioned volume is accessible from.- type String
(string: <required>)
- The type of the volume. Currently, onlycsi
is supported.- volume
Id String (string: <required>)
- The unique ID of the volume.
- capabilities
External
Volume Capability[] (``Capability``: <required>)
- Options for validating the capability of a volume.- capacity
Max string (string: <optional>)
- Option to signal a maximum volume size. This may not be supported by all storage providers.- capacity
Min string (string: <optional>)
- Option to signal a minimum volume size. This may not be supported by all storage providers.- clone
Id string (string: <optional>)
- The external ID of an existing volume to restore. If ommited, the volume will be created from scratch. Conflicts withsnapshot_id
.- controller
Required boolean - controllers
Expected number - controllers
Healthy number - mount
Options ExternalVolume Mount Options (block: optional)
Options for mountingblock-device
volumes without a pre-formatted file system.- name string
(string: <required>)
- The display name for the volume.- namespace string
(string: "default")
- The namespace in which to register the volume.- nodes
Expected number - nodes
Healthy number - parameters {[key: string]: string}
(map[string]string: optional)
An optional key-value map of strings passed directly to the CSI plugin to configure the volume.- plugin
Id string (string: <required>)
- The ID of the Nomad plugin for registering this volume.- plugin
Provider string - plugin
Provider stringVersion - schedulable boolean
- secrets {[key: string]: string}
(map[string]string: optional)
An optional key-value map of strings used as credentials for publishing and unpublishing volumes.- snapshot
Id string (string: <optional>)
- The external ID of a snapshot to restore. If ommited, the volume will be created from scratch. Conflicts withclone_id
.- topologies
External
Volume Topology[] - topology
Request ExternalVolume Topology Request (``TopologyRequest``: <optional>)
- Specify locations (region, zone, rack, etc.) where the provisioned volume is accessible from.- type string
(string: <required>)
- The type of the volume. Currently, onlycsi
is supported.- volume
Id string (string: <required>)
- The unique ID of the volume.
- capabilities
Sequence[External
Volume Capability Args] (``Capability``: <required>)
- Options for validating the capability of a volume.- capacity_
max str (string: <optional>)
- Option to signal a maximum volume size. This may not be supported by all storage providers.- capacity_
min str (string: <optional>)
- Option to signal a minimum volume size. This may not be supported by all storage providers.- clone_
id str (string: <optional>)
- The external ID of an existing volume to restore. If ommited, the volume will be created from scratch. Conflicts withsnapshot_id
.- controller_
required bool - controllers_
expected int - controllers_
healthy int - mount_
options ExternalVolume Mount Options Args (block: optional)
Options for mountingblock-device
volumes without a pre-formatted file system.- name str
(string: <required>)
- The display name for the volume.- namespace str
(string: "default")
- The namespace in which to register the volume.- nodes_
expected int - nodes_
healthy int - parameters Mapping[str, str]
(map[string]string: optional)
An optional key-value map of strings passed directly to the CSI plugin to configure the volume.- plugin_
id str (string: <required>)
- The ID of the Nomad plugin for registering this volume.- plugin_
provider str - plugin_
provider_ strversion - schedulable bool
- secrets Mapping[str, str]
(map[string]string: optional)
An optional key-value map of strings used as credentials for publishing and unpublishing volumes.- snapshot_
id str (string: <optional>)
- The external ID of a snapshot to restore. If ommited, the volume will be created from scratch. Conflicts withclone_id
.- topologies
Sequence[External
Volume Topology Args] - topology_
request ExternalVolume Topology Request Args (``TopologyRequest``: <optional>)
- Specify locations (region, zone, rack, etc.) where the provisioned volume is accessible from.- type str
(string: <required>)
- The type of the volume. Currently, onlycsi
is supported.- volume_
id str (string: <required>)
- The unique ID of the volume.
- capabilities List<Property Map>
(``Capability``: <required>)
- Options for validating the capability of a volume.- capacity
Max String (string: <optional>)
- Option to signal a maximum volume size. This may not be supported by all storage providers.- capacity
Min String (string: <optional>)
- Option to signal a minimum volume size. This may not be supported by all storage providers.- clone
Id String (string: <optional>)
- The external ID of an existing volume to restore. If ommited, the volume will be created from scratch. Conflicts withsnapshot_id
.- controller
Required Boolean - controllers
Expected Number - controllers
Healthy Number - mount
Options Property Map (block: optional)
Options for mountingblock-device
volumes without a pre-formatted file system.- name String
(string: <required>)
- The display name for the volume.- namespace String
(string: "default")
- The namespace in which to register the volume.- nodes
Expected Number - nodes
Healthy Number - parameters Map<String>
(map[string]string: optional)
An optional key-value map of strings passed directly to the CSI plugin to configure the volume.- plugin
Id String (string: <required>)
- The ID of the Nomad plugin for registering this volume.- plugin
Provider String - plugin
Provider StringVersion - schedulable Boolean
- secrets Map<String>
(map[string]string: optional)
An optional key-value map of strings used as credentials for publishing and unpublishing volumes.- snapshot
Id String (string: <optional>)
- The external ID of a snapshot to restore. If ommited, the volume will be created from scratch. Conflicts withclone_id
.- topologies List<Property Map>
- topology
Request Property Map (``TopologyRequest``: <optional>)
- Specify locations (region, zone, rack, etc.) where the provisioned volume is accessible from.- type String
(string: <required>)
- The type of the volume. Currently, onlycsi
is supported.- volume
Id String (string: <required>)
- The unique ID of the volume.
Supporting Types
ExternalVolumeCapability, ExternalVolumeCapabilityArgs
- Access
Mode string (string: <required>)
- Defines whether a volume should be available concurrently. Possible values are:single-node-reader-only
single-node-writer
multi-node-reader-only
multi-node-single-writer
multi-node-multi-writer
- Attachment
Mode string (string: <required>)
- The storage API that will be used by the volume. Possible values are:block-device
file-system
- Access
Mode string (string: <required>)
- Defines whether a volume should be available concurrently. Possible values are:single-node-reader-only
single-node-writer
multi-node-reader-only
multi-node-single-writer
multi-node-multi-writer
- Attachment
Mode string (string: <required>)
- The storage API that will be used by the volume. Possible values are:block-device
file-system
- access
Mode String (string: <required>)
- Defines whether a volume should be available concurrently. Possible values are:single-node-reader-only
single-node-writer
multi-node-reader-only
multi-node-single-writer
multi-node-multi-writer
- attachment
Mode String (string: <required>)
- The storage API that will be used by the volume. Possible values are:block-device
file-system
- access
Mode string (string: <required>)
- Defines whether a volume should be available concurrently. Possible values are:single-node-reader-only
single-node-writer
multi-node-reader-only
multi-node-single-writer
multi-node-multi-writer
- attachment
Mode string (string: <required>)
- The storage API that will be used by the volume. Possible values are:block-device
file-system
- access_
mode str (string: <required>)
- Defines whether a volume should be available concurrently. Possible values are:single-node-reader-only
single-node-writer
multi-node-reader-only
multi-node-single-writer
multi-node-multi-writer
- attachment_
mode str (string: <required>)
- The storage API that will be used by the volume. Possible values are:block-device
file-system
- access
Mode String (string: <required>)
- Defines whether a volume should be available concurrently. Possible values are:single-node-reader-only
single-node-writer
multi-node-reader-only
multi-node-single-writer
multi-node-multi-writer
- attachment
Mode String (string: <required>)
- The storage API that will be used by the volume. Possible values are:block-device
file-system
ExternalVolumeMountOptions, ExternalVolumeMountOptionsArgs
- Fs
Type string (string: optional)
- The file system type.- Mount
Flags List<string> []string: optional
- The flags passed tomount
.
- Fs
Type string (string: optional)
- The file system type.- Mount
Flags []string []string: optional
- The flags passed tomount
.
- fs
Type String (string: optional)
- The file system type.- mount
Flags List<String> []string: optional
- The flags passed tomount
.
- fs
Type string (string: optional)
- The file system type.- mount
Flags string[] []string: optional
- The flags passed tomount
.
- fs_
type str (string: optional)
- The file system type.- mount_
flags Sequence[str] []string: optional
- The flags passed tomount
.
- fs
Type String (string: optional)
- The file system type.- mount
Flags List<String> []string: optional
- The flags passed tomount
.
ExternalVolumeTopology, ExternalVolumeTopologyArgs
- Segments Dictionary<string, string>
(map[string]string)
- Define the attributes for the topology request.In addition to the above arguments, the following attributes are exported and can be referenced:
- Segments map[string]string
(map[string]string)
- Define the attributes for the topology request.In addition to the above arguments, the following attributes are exported and can be referenced:
- segments Map<String,String>
(map[string]string)
- Define the attributes for the topology request.In addition to the above arguments, the following attributes are exported and can be referenced:
- segments {[key: string]: string}
(map[string]string)
- Define the attributes for the topology request.In addition to the above arguments, the following attributes are exported and can be referenced:
- segments Mapping[str, str]
(map[string]string)
- Define the attributes for the topology request.In addition to the above arguments, the following attributes are exported and can be referenced:
- segments Map<String>
(map[string]string)
- Define the attributes for the topology request.In addition to the above arguments, the following attributes are exported and can be referenced:
ExternalVolumeTopologyRequest, ExternalVolumeTopologyRequestArgs
- Preferred
External
Volume Topology Request Preferred (``Topology``: <optional>)
- Preferred topologies indicate that the volume should be created in a location accessible from some of the listed topologies.- Required
External
Volume Topology Request Required (``Topology``: <optional>)
- Required topologies indicate that the volume must be created in a location accessible from all the listed topologies.
- Preferred
External
Volume Topology Request Preferred (``Topology``: <optional>)
- Preferred topologies indicate that the volume should be created in a location accessible from some of the listed topologies.- Required
External
Volume Topology Request Required (``Topology``: <optional>)
- Required topologies indicate that the volume must be created in a location accessible from all the listed topologies.
- preferred
External
Volume Topology Request Preferred (``Topology``: <optional>)
- Preferred topologies indicate that the volume should be created in a location accessible from some of the listed topologies.- required
External
Volume Topology Request Required (``Topology``: <optional>)
- Required topologies indicate that the volume must be created in a location accessible from all the listed topologies.
- preferred
External
Volume Topology Request Preferred (``Topology``: <optional>)
- Preferred topologies indicate that the volume should be created in a location accessible from some of the listed topologies.- required
External
Volume Topology Request Required (``Topology``: <optional>)
- Required topologies indicate that the volume must be created in a location accessible from all the listed topologies.
- preferred
External
Volume Topology Request Preferred (``Topology``: <optional>)
- Preferred topologies indicate that the volume should be created in a location accessible from some of the listed topologies.- required
External
Volume Topology Request Required (``Topology``: <optional>)
- Required topologies indicate that the volume must be created in a location accessible from all the listed topologies.
- preferred Property Map
(``Topology``: <optional>)
- Preferred topologies indicate that the volume should be created in a location accessible from some of the listed topologies.- required Property Map
(``Topology``: <optional>)
- Required topologies indicate that the volume must be created in a location accessible from all the listed topologies.
ExternalVolumeTopologyRequestPreferred, ExternalVolumeTopologyRequestPreferredArgs
- Topologies
List<External
Volume Topology Request Preferred Topology> - Defines the location for the volume.
- Topologies
[]External
Volume Topology Request Preferred Topology - Defines the location for the volume.
- topologies
List<External
Volume Topology Request Preferred Topology> - Defines the location for the volume.
- topologies
External
Volume Topology Request Preferred Topology[] - Defines the location for the volume.
- topologies
Sequence[External
Volume Topology Request Preferred Topology] - Defines the location for the volume.
- topologies List<Property Map>
- Defines the location for the volume.
ExternalVolumeTopologyRequestPreferredTopology, ExternalVolumeTopologyRequestPreferredTopologyArgs
- Segments Dictionary<string, string>
- Define the attributes for the topology request.
- Segments map[string]string
- Define the attributes for the topology request.
- segments Map<String,String>
- Define the attributes for the topology request.
- segments {[key: string]: string}
- Define the attributes for the topology request.
- segments Mapping[str, str]
- Define the attributes for the topology request.
- segments Map<String>
- Define the attributes for the topology request.
ExternalVolumeTopologyRequestRequired, ExternalVolumeTopologyRequestRequiredArgs
- Topologies
List<External
Volume Topology Request Required Topology> - Defines the location for the volume.
- Topologies
[]External
Volume Topology Request Required Topology - Defines the location for the volume.
- topologies
List<External
Volume Topology Request Required Topology> - Defines the location for the volume.
- topologies
External
Volume Topology Request Required Topology[] - Defines the location for the volume.
- topologies
Sequence[External
Volume Topology Request Required Topology] - Defines the location for the volume.
- topologies List<Property Map>
- Defines the location for the volume.
ExternalVolumeTopologyRequestRequiredTopology, ExternalVolumeTopologyRequestRequiredTopologyArgs
- Segments Dictionary<string, string>
- Define the attributes for the topology request.
- Segments map[string]string
- Define the attributes for the topology request.
- segments Map<String,String>
- Define the attributes for the topology request.
- segments {[key: string]: string}
- Define the attributes for the topology request.
- segments Mapping[str, str]
- Define the attributes for the topology request.
- segments Map<String>
- Define the attributes for the topology request.
Package Details
- Repository
- HashiCorp Nomad pulumi/pulumi-nomad
- License
- Apache-2.0
- Notes
- This Pulumi package is based on the
nomad
Terraform Provider.