1. Packages
  2. Scaleway
  3. API Docs
  4. elasticmetal
  5. IpMacAddress
Scaleway v1.26.0 published on Friday, Mar 28, 2025 by pulumiverse

scaleway.elasticmetal.IpMacAddress

Explore with Pulumi AI

Creates and manages Scaleway Flexible IP Mac Addresses. For more information, see the API documentation.

Example Usage

Basic

import * as pulumi from "@pulumi/pulumi";
import * as scaleway from "@pulumiverse/scaleway";

const main = new scaleway.elasticmetal.Ip("main", {});
const mainIpMacAddress = new scaleway.elasticmetal.IpMacAddress("main", {
    flexibleIpId: main.id,
    type: "kvm",
});
Copy
import pulumi
import pulumiverse_scaleway as scaleway

main = scaleway.elasticmetal.Ip("main")
main_ip_mac_address = scaleway.elasticmetal.IpMacAddress("main",
    flexible_ip_id=main.id,
    type="kvm")
Copy
package main

import (
	"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
	"github.com/pulumiverse/pulumi-scaleway/sdk/go/scaleway/elasticmetal"
)

func main() {
	pulumi.Run(func(ctx *pulumi.Context) error {
		main, err := elasticmetal.NewIp(ctx, "main", nil)
		if err != nil {
			return err
		}
		_, err = elasticmetal.NewIpMacAddress(ctx, "main", &elasticmetal.IpMacAddressArgs{
			FlexibleIpId: main.ID(),
			Type:         pulumi.String("kvm"),
		})
		if err != nil {
			return err
		}
		return nil
	})
}
Copy
using System.Collections.Generic;
using System.Linq;
using Pulumi;
using Scaleway = Pulumiverse.Scaleway;

return await Deployment.RunAsync(() => 
{
    var main = new Scaleway.Elasticmetal.Ip("main");

    var mainIpMacAddress = new Scaleway.Elasticmetal.IpMacAddress("main", new()
    {
        FlexibleIpId = main.Id,
        Type = "kvm",
    });

});
Copy
package generated_program;

import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.scaleway.elasticmetal.Ip;
import com.pulumi.scaleway.elasticmetal.IpMacAddress;
import com.pulumi.scaleway.elasticmetal.IpMacAddressArgs;
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 main = new Ip("main");

        var mainIpMacAddress = new IpMacAddress("mainIpMacAddress", IpMacAddressArgs.builder()
            .flexibleIpId(main.id())
            .type("kvm")
            .build());

    }
}
Copy
resources:
  main:
    type: scaleway:elasticmetal:Ip
  mainIpMacAddress:
    type: scaleway:elasticmetal:IpMacAddress
    name: main
    properties:
      flexibleIpId: ${main.id}
      type: kvm
Copy

Duplicate on many other flexible IPs

import * as pulumi from "@pulumi/pulumi";
import * as scaleway from "@pulumi/scaleway";
import * as scaleway from "@pulumiverse/scaleway";

const myOffer = scaleway.elasticmetal.getOffer({
    name: "EM-B112X-SSD",
});
const base = new scaleway.elasticmetal.Server("base", {
    name: "TestAccScalewayBaremetalServer_WithoutInstallConfig",
    offer: myOffer.then(myOffer => myOffer.offerId),
    installConfigAfterward: true,
});
const ip01 = new scaleway.elasticmetal.Ip("ip01", {serverId: base.id});
const ip02 = new scaleway.elasticmetal.Ip("ip02", {serverId: base.id});
const ip03 = new scaleway.elasticmetal.Ip("ip03", {serverId: base.id});
const main = new scaleway.elasticmetal.IpMacAddress("main", {
    flexibleIpId: ip01.id,
    type: "kvm",
    flexibleIpIdsToDuplicates: [
        ip02.id,
        ip03.id,
    ],
});
Copy
import pulumi
import pulumi_scaleway as scaleway
import pulumiverse_scaleway as scaleway

my_offer = scaleway.elasticmetal.get_offer(name="EM-B112X-SSD")
base = scaleway.elasticmetal.Server("base",
    name="TestAccScalewayBaremetalServer_WithoutInstallConfig",
    offer=my_offer.offer_id,
    install_config_afterward=True)
ip01 = scaleway.elasticmetal.Ip("ip01", server_id=base.id)
ip02 = scaleway.elasticmetal.Ip("ip02", server_id=base.id)
ip03 = scaleway.elasticmetal.Ip("ip03", server_id=base.id)
main = scaleway.elasticmetal.IpMacAddress("main",
    flexible_ip_id=ip01.id,
    type="kvm",
    flexible_ip_ids_to_duplicates=[
        ip02.id,
        ip03.id,
    ])
Copy
package main

import (
	"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
	"github.com/pulumiverse/pulumi-scaleway/sdk/go/scaleway/elasticmetal"
)

func main() {
	pulumi.Run(func(ctx *pulumi.Context) error {
		myOffer, err := elasticmetal.GetOffer(ctx, &elasticmetal.GetOfferArgs{
			Name: pulumi.StringRef("EM-B112X-SSD"),
		}, nil)
		if err != nil {
			return err
		}
		base, err := elasticmetal.NewServer(ctx, "base", &elasticmetal.ServerArgs{
			Name:                   pulumi.String("TestAccScalewayBaremetalServer_WithoutInstallConfig"),
			Offer:                  pulumi.String(myOffer.OfferId),
			InstallConfigAfterward: pulumi.Bool(true),
		})
		if err != nil {
			return err
		}
		ip01, err := elasticmetal.NewIp(ctx, "ip01", &elasticmetal.IpArgs{
			ServerId: base.ID(),
		})
		if err != nil {
			return err
		}
		ip02, err := elasticmetal.NewIp(ctx, "ip02", &elasticmetal.IpArgs{
			ServerId: base.ID(),
		})
		if err != nil {
			return err
		}
		ip03, err := elasticmetal.NewIp(ctx, "ip03", &elasticmetal.IpArgs{
			ServerId: base.ID(),
		})
		if err != nil {
			return err
		}
		_, err = elasticmetal.NewIpMacAddress(ctx, "main", &elasticmetal.IpMacAddressArgs{
			FlexibleIpId: ip01.ID(),
			Type:         pulumi.String("kvm"),
			FlexibleIpIdsToDuplicates: pulumi.StringArray{
				ip02.ID(),
				ip03.ID(),
			},
		})
		if err != nil {
			return err
		}
		return nil
	})
}
Copy
using System.Collections.Generic;
using System.Linq;
using Pulumi;
using Scaleway = Pulumi.Scaleway;
using Scaleway = Pulumiverse.Scaleway;

return await Deployment.RunAsync(() => 
{
    var myOffer = Scaleway.Elasticmetal.GetOffer.Invoke(new()
    {
        Name = "EM-B112X-SSD",
    });

    var @base = new Scaleway.Elasticmetal.Server("base", new()
    {
        Name = "TestAccScalewayBaremetalServer_WithoutInstallConfig",
        Offer = myOffer.Apply(getOfferResult => getOfferResult.OfferId),
        InstallConfigAfterward = true,
    });

    var ip01 = new Scaleway.Elasticmetal.Ip("ip01", new()
    {
        ServerId = @base.Id,
    });

    var ip02 = new Scaleway.Elasticmetal.Ip("ip02", new()
    {
        ServerId = @base.Id,
    });

    var ip03 = new Scaleway.Elasticmetal.Ip("ip03", new()
    {
        ServerId = @base.Id,
    });

    var main = new Scaleway.Elasticmetal.IpMacAddress("main", new()
    {
        FlexibleIpId = ip01.Id,
        Type = "kvm",
        FlexibleIpIdsToDuplicates = new[]
        {
            ip02.Id,
            ip03.Id,
        },
    });

});
Copy
package generated_program;

import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.scaleway.elasticmetal.ElasticmetalFunctions;
import com.pulumi.scaleway.elasticmetal.inputs.GetOfferArgs;
import com.pulumi.scaleway.elasticmetal.Server;
import com.pulumi.scaleway.elasticmetal.ServerArgs;
import com.pulumi.scaleway.elasticmetal.Ip;
import com.pulumi.scaleway.elasticmetal.IpArgs;
import com.pulumi.scaleway.elasticmetal.IpMacAddress;
import com.pulumi.scaleway.elasticmetal.IpMacAddressArgs;
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 myOffer = ElasticmetalFunctions.getOffer(GetOfferArgs.builder()
            .name("EM-B112X-SSD")
            .build());

        var base = new Server("base", ServerArgs.builder()
            .name("TestAccScalewayBaremetalServer_WithoutInstallConfig")
            .offer(myOffer.applyValue(getOfferResult -> getOfferResult.offerId()))
            .installConfigAfterward(true)
            .build());

        var ip01 = new Ip("ip01", IpArgs.builder()
            .serverId(base.id())
            .build());

        var ip02 = new Ip("ip02", IpArgs.builder()
            .serverId(base.id())
            .build());

        var ip03 = new Ip("ip03", IpArgs.builder()
            .serverId(base.id())
            .build());

        var main = new IpMacAddress("main", IpMacAddressArgs.builder()
            .flexibleIpId(ip01.id())
            .type("kvm")
            .flexibleIpIdsToDuplicates(            
                ip02.id(),
                ip03.id())
            .build());

    }
}
Copy
resources:
  base:
    type: scaleway:elasticmetal:Server
    properties:
      name: TestAccScalewayBaremetalServer_WithoutInstallConfig
      offer: ${myOffer.offerId}
      installConfigAfterward: true
  ip01:
    type: scaleway:elasticmetal:Ip
    properties:
      serverId: ${base.id}
  ip02:
    type: scaleway:elasticmetal:Ip
    properties:
      serverId: ${base.id}
  ip03:
    type: scaleway:elasticmetal:Ip
    properties:
      serverId: ${base.id}
  main:
    type: scaleway:elasticmetal:IpMacAddress
    properties:
      flexibleIpId: ${ip01.id}
      type: kvm
      flexibleIpIdsToDuplicates:
        - ${ip02.id}
        - ${ip03.id}
variables:
  myOffer:
    fn::invoke:
      function: scaleway:elasticmetal:getOffer
      arguments:
        name: EM-B112X-SSD
Copy

Create IpMacAddress Resource

Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.

Constructor syntax

new IpMacAddress(name: string, args: IpMacAddressArgs, opts?: CustomResourceOptions);
@overload
def IpMacAddress(resource_name: str,
                 args: IpMacAddressArgs,
                 opts: Optional[ResourceOptions] = None)

@overload
def IpMacAddress(resource_name: str,
                 opts: Optional[ResourceOptions] = None,
                 flexible_ip_id: Optional[str] = None,
                 type: Optional[str] = None,
                 flexible_ip_ids_to_duplicates: Optional[Sequence[str]] = None,
                 zone: Optional[str] = None)
func NewIpMacAddress(ctx *Context, name string, args IpMacAddressArgs, opts ...ResourceOption) (*IpMacAddress, error)
public IpMacAddress(string name, IpMacAddressArgs args, CustomResourceOptions? opts = null)
public IpMacAddress(String name, IpMacAddressArgs args)
public IpMacAddress(String name, IpMacAddressArgs args, CustomResourceOptions options)
type: scaleway:elasticmetal:IpMacAddress
properties: # The arguments to resource properties.
options: # Bag of options to control resource's behavior.

Parameters

name This property is required. string
The unique name of the resource.
args This property is required. IpMacAddressArgs
The arguments to resource properties.
opts CustomResourceOptions
Bag of options to control resource's behavior.
resource_name This property is required. str
The unique name of the resource.
args This property is required. IpMacAddressArgs
The arguments to resource properties.
opts ResourceOptions
Bag of options to control resource's behavior.
ctx Context
Context object for the current deployment.
name This property is required. string
The unique name of the resource.
args This property is required. IpMacAddressArgs
The arguments to resource properties.
opts ResourceOption
Bag of options to control resource's behavior.
name This property is required. string
The unique name of the resource.
args This property is required. IpMacAddressArgs
The arguments to resource properties.
opts CustomResourceOptions
Bag of options to control resource's behavior.
name This property is required. String
The unique name of the resource.
args This property is required. IpMacAddressArgs
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 ipMacAddressResource = new Scaleway.Elasticmetal.IpMacAddress("ipMacAddressResource", new()
{
    FlexibleIpId = "string",
    Type = "string",
    FlexibleIpIdsToDuplicates = new[]
    {
        "string",
    },
    Zone = "string",
});
Copy
example, err := elasticmetal.NewIpMacAddress(ctx, "ipMacAddressResource", &elasticmetal.IpMacAddressArgs{
	FlexibleIpId: pulumi.String("string"),
	Type:         pulumi.String("string"),
	FlexibleIpIdsToDuplicates: pulumi.StringArray{
		pulumi.String("string"),
	},
	Zone: pulumi.String("string"),
})
Copy
var ipMacAddressResource = new IpMacAddress("ipMacAddressResource", IpMacAddressArgs.builder()
    .flexibleIpId("string")
    .type("string")
    .flexibleIpIdsToDuplicates("string")
    .zone("string")
    .build());
Copy
ip_mac_address_resource = scaleway.elasticmetal.IpMacAddress("ipMacAddressResource",
    flexible_ip_id="string",
    type="string",
    flexible_ip_ids_to_duplicates=["string"],
    zone="string")
Copy
const ipMacAddressResource = new scaleway.elasticmetal.IpMacAddress("ipMacAddressResource", {
    flexibleIpId: "string",
    type: "string",
    flexibleIpIdsToDuplicates: ["string"],
    zone: "string",
});
Copy
type: scaleway:elasticmetal:IpMacAddress
properties:
    flexibleIpId: string
    flexibleIpIdsToDuplicates:
        - string
    type: string
    zone: string
Copy

IpMacAddress 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 IpMacAddress resource accepts the following input properties:

FlexibleIpId This property is required. string
The ID of the flexible IP for which to generate a virtual MAC.
Type This property is required. string
The type of the virtual MAC.
FlexibleIpIdsToDuplicates List<string>

The IDs of the flexible IPs on which to duplicate the virtual MAC.

Important: The flexible IPs need to be attached to the same server for the operation to work.

Zone Changes to this property will trigger replacement. string
The zone of the Virtual Mac Address.
FlexibleIpId This property is required. string
The ID of the flexible IP for which to generate a virtual MAC.
Type This property is required. string
The type of the virtual MAC.
FlexibleIpIdsToDuplicates []string

The IDs of the flexible IPs on which to duplicate the virtual MAC.

Important: The flexible IPs need to be attached to the same server for the operation to work.

Zone Changes to this property will trigger replacement. string
The zone of the Virtual Mac Address.
flexibleIpId This property is required. String
The ID of the flexible IP for which to generate a virtual MAC.
type This property is required. String
The type of the virtual MAC.
flexibleIpIdsToDuplicates List<String>

The IDs of the flexible IPs on which to duplicate the virtual MAC.

Important: The flexible IPs need to be attached to the same server for the operation to work.

zone Changes to this property will trigger replacement. String
The zone of the Virtual Mac Address.
flexibleIpId This property is required. string
The ID of the flexible IP for which to generate a virtual MAC.
type This property is required. string
The type of the virtual MAC.
flexibleIpIdsToDuplicates string[]

The IDs of the flexible IPs on which to duplicate the virtual MAC.

Important: The flexible IPs need to be attached to the same server for the operation to work.

zone Changes to this property will trigger replacement. string
The zone of the Virtual Mac Address.
flexible_ip_id This property is required. str
The ID of the flexible IP for which to generate a virtual MAC.
type This property is required. str
The type of the virtual MAC.
flexible_ip_ids_to_duplicates Sequence[str]

The IDs of the flexible IPs on which to duplicate the virtual MAC.

Important: The flexible IPs need to be attached to the same server for the operation to work.

zone Changes to this property will trigger replacement. str
The zone of the Virtual Mac Address.
flexibleIpId This property is required. String
The ID of the flexible IP for which to generate a virtual MAC.
type This property is required. String
The type of the virtual MAC.
flexibleIpIdsToDuplicates List<String>

The IDs of the flexible IPs on which to duplicate the virtual MAC.

Important: The flexible IPs need to be attached to the same server for the operation to work.

zone Changes to this property will trigger replacement. String
The zone of the Virtual Mac Address.

Outputs

All input properties are implicitly available as output properties. Additionally, the IpMacAddress resource produces the following output properties:

Address string
The Virtual MAC address.
CreatedAt string
The date at which the Virtual Mac Address was created (RFC 3339 format).
Id string
The provider-assigned unique ID for this managed resource.
Status string
The Virtual MAC status.
UpdatedAt string
The date at which the Virtual Mac Address was last updated (RFC 3339 format).
Address string
The Virtual MAC address.
CreatedAt string
The date at which the Virtual Mac Address was created (RFC 3339 format).
Id string
The provider-assigned unique ID for this managed resource.
Status string
The Virtual MAC status.
UpdatedAt string
The date at which the Virtual Mac Address was last updated (RFC 3339 format).
address String
The Virtual MAC address.
createdAt String
The date at which the Virtual Mac Address was created (RFC 3339 format).
id String
The provider-assigned unique ID for this managed resource.
status String
The Virtual MAC status.
updatedAt String
The date at which the Virtual Mac Address was last updated (RFC 3339 format).
address string
The Virtual MAC address.
createdAt string
The date at which the Virtual Mac Address was created (RFC 3339 format).
id string
The provider-assigned unique ID for this managed resource.
status string
The Virtual MAC status.
updatedAt string
The date at which the Virtual Mac Address was last updated (RFC 3339 format).
address str
The Virtual MAC address.
created_at str
The date at which the Virtual Mac Address was created (RFC 3339 format).
id str
The provider-assigned unique ID for this managed resource.
status str
The Virtual MAC status.
updated_at str
The date at which the Virtual Mac Address was last updated (RFC 3339 format).
address String
The Virtual MAC address.
createdAt String
The date at which the Virtual Mac Address was created (RFC 3339 format).
id String
The provider-assigned unique ID for this managed resource.
status String
The Virtual MAC status.
updatedAt String
The date at which the Virtual Mac Address was last updated (RFC 3339 format).

Look up Existing IpMacAddress Resource

Get an existing IpMacAddress 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?: IpMacAddressState, opts?: CustomResourceOptions): IpMacAddress
@staticmethod
def get(resource_name: str,
        id: str,
        opts: Optional[ResourceOptions] = None,
        address: Optional[str] = None,
        created_at: Optional[str] = None,
        flexible_ip_id: Optional[str] = None,
        flexible_ip_ids_to_duplicates: Optional[Sequence[str]] = None,
        status: Optional[str] = None,
        type: Optional[str] = None,
        updated_at: Optional[str] = None,
        zone: Optional[str] = None) -> IpMacAddress
func GetIpMacAddress(ctx *Context, name string, id IDInput, state *IpMacAddressState, opts ...ResourceOption) (*IpMacAddress, error)
public static IpMacAddress Get(string name, Input<string> id, IpMacAddressState? state, CustomResourceOptions? opts = null)
public static IpMacAddress get(String name, Output<String> id, IpMacAddressState state, CustomResourceOptions options)
resources:  _:    type: scaleway:elasticmetal:IpMacAddress    get:      id: ${id}
name This property is required.
The unique name of the resulting resource.
id This property is required.
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 This property is required.
The unique name of the resulting resource.
id This property is required.
The unique provider ID of the resource to lookup.
name This property is required.
The unique name of the resulting resource.
id This property is required.
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 This property is required.
The unique name of the resulting resource.
id This property is required.
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 This property is required.
The unique name of the resulting resource.
id This property is required.
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.
The following state arguments are supported:
Address string
The Virtual MAC address.
CreatedAt string
The date at which the Virtual Mac Address was created (RFC 3339 format).
FlexibleIpId string
The ID of the flexible IP for which to generate a virtual MAC.
FlexibleIpIdsToDuplicates List<string>

The IDs of the flexible IPs on which to duplicate the virtual MAC.

Important: The flexible IPs need to be attached to the same server for the operation to work.

Status string
The Virtual MAC status.
Type string
The type of the virtual MAC.
UpdatedAt string
The date at which the Virtual Mac Address was last updated (RFC 3339 format).
Zone Changes to this property will trigger replacement. string
The zone of the Virtual Mac Address.
Address string
The Virtual MAC address.
CreatedAt string
The date at which the Virtual Mac Address was created (RFC 3339 format).
FlexibleIpId string
The ID of the flexible IP for which to generate a virtual MAC.
FlexibleIpIdsToDuplicates []string

The IDs of the flexible IPs on which to duplicate the virtual MAC.

Important: The flexible IPs need to be attached to the same server for the operation to work.

Status string
The Virtual MAC status.
Type string
The type of the virtual MAC.
UpdatedAt string
The date at which the Virtual Mac Address was last updated (RFC 3339 format).
Zone Changes to this property will trigger replacement. string
The zone of the Virtual Mac Address.
address String
The Virtual MAC address.
createdAt String
The date at which the Virtual Mac Address was created (RFC 3339 format).
flexibleIpId String
The ID of the flexible IP for which to generate a virtual MAC.
flexibleIpIdsToDuplicates List<String>

The IDs of the flexible IPs on which to duplicate the virtual MAC.

Important: The flexible IPs need to be attached to the same server for the operation to work.

status String
The Virtual MAC status.
type String
The type of the virtual MAC.
updatedAt String
The date at which the Virtual Mac Address was last updated (RFC 3339 format).
zone Changes to this property will trigger replacement. String
The zone of the Virtual Mac Address.
address string
The Virtual MAC address.
createdAt string
The date at which the Virtual Mac Address was created (RFC 3339 format).
flexibleIpId string
The ID of the flexible IP for which to generate a virtual MAC.
flexibleIpIdsToDuplicates string[]

The IDs of the flexible IPs on which to duplicate the virtual MAC.

Important: The flexible IPs need to be attached to the same server for the operation to work.

status string
The Virtual MAC status.
type string
The type of the virtual MAC.
updatedAt string
The date at which the Virtual Mac Address was last updated (RFC 3339 format).
zone Changes to this property will trigger replacement. string
The zone of the Virtual Mac Address.
address str
The Virtual MAC address.
created_at str
The date at which the Virtual Mac Address was created (RFC 3339 format).
flexible_ip_id str
The ID of the flexible IP for which to generate a virtual MAC.
flexible_ip_ids_to_duplicates Sequence[str]

The IDs of the flexible IPs on which to duplicate the virtual MAC.

Important: The flexible IPs need to be attached to the same server for the operation to work.

status str
The Virtual MAC status.
type str
The type of the virtual MAC.
updated_at str
The date at which the Virtual Mac Address was last updated (RFC 3339 format).
zone Changes to this property will trigger replacement. str
The zone of the Virtual Mac Address.
address String
The Virtual MAC address.
createdAt String
The date at which the Virtual Mac Address was created (RFC 3339 format).
flexibleIpId String
The ID of the flexible IP for which to generate a virtual MAC.
flexibleIpIdsToDuplicates List<String>

The IDs of the flexible IPs on which to duplicate the virtual MAC.

Important: The flexible IPs need to be attached to the same server for the operation to work.

status String
The Virtual MAC status.
type String
The type of the virtual MAC.
updatedAt String
The date at which the Virtual Mac Address was last updated (RFC 3339 format).
zone Changes to this property will trigger replacement. String
The zone of the Virtual Mac Address.

Import

Flexible IP Mac Addresses can be imported using the {zone}/{id}, e.g.

bash

$ pulumi import scaleway:elasticmetal/ipMacAddress:IpMacAddress main fr-par-1/11111111-1111-1111-1111-111111111111
Copy

To learn more about importing existing cloud resources, see Importing resources.

Package Details

Repository
scaleway pulumiverse/pulumi-scaleway
License
Apache-2.0
Notes
This Pulumi package is based on the scaleway Terraform Provider.