outscale.Nic
Explore with Pulumi AI
Manages a network interface card (NIC).
For more information on this resource, see the User Guide.
For more information on this resource actions, see the API documentation.
Example Usage
Required resources
import * as pulumi from "@pulumi/pulumi";
import * as outscale from "@pulumi/outscale";
const net01 = new outscale.Net("net01", {ipRange: "10.0.0.0/16"});
const subnet01 = new outscale.Subnet("subnet01", {
subregionName: "eu-west-2a",
ipRange: "10.0.0.0/18",
netId: net01.netId,
});
const securityGroup01 = new outscale.SecurityGroup("securityGroup01", {
description: "Terraform security group for nic with private IPs",
securityGroupName: "terraform-security-group-nic-ips",
netId: net01.netId,
});
import pulumi
import pulumi_outscale as outscale
net01 = outscale.Net("net01", ip_range="10.0.0.0/16")
subnet01 = outscale.Subnet("subnet01",
subregion_name="eu-west-2a",
ip_range="10.0.0.0/18",
net_id=net01.net_id)
security_group01 = outscale.SecurityGroup("securityGroup01",
description="Terraform security group for nic with private IPs",
security_group_name="terraform-security-group-nic-ips",
net_id=net01.net_id)
package main
import (
"github.com/pulumi/pulumi-terraform-provider/sdks/go/outscale/outscale"
"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
)
func main() {
pulumi.Run(func(ctx *pulumi.Context) error {
net01, err := outscale.NewNet(ctx, "net01", &outscale.NetArgs{
IpRange: pulumi.String("10.0.0.0/16"),
})
if err != nil {
return err
}
_, err = outscale.NewSubnet(ctx, "subnet01", &outscale.SubnetArgs{
SubregionName: pulumi.String("eu-west-2a"),
IpRange: pulumi.String("10.0.0.0/18"),
NetId: net01.NetId,
})
if err != nil {
return err
}
_, err = outscale.NewSecurityGroup(ctx, "securityGroup01", &outscale.SecurityGroupArgs{
Description: pulumi.String("Terraform security group for nic with private IPs"),
SecurityGroupName: pulumi.String("terraform-security-group-nic-ips"),
NetId: net01.NetId,
})
if err != nil {
return err
}
return nil
})
}
using System.Collections.Generic;
using System.Linq;
using Pulumi;
using Outscale = Pulumi.Outscale;
return await Deployment.RunAsync(() =>
{
var net01 = new Outscale.Net("net01", new()
{
IpRange = "10.0.0.0/16",
});
var subnet01 = new Outscale.Subnet("subnet01", new()
{
SubregionName = "eu-west-2a",
IpRange = "10.0.0.0/18",
NetId = net01.NetId,
});
var securityGroup01 = new Outscale.SecurityGroup("securityGroup01", new()
{
Description = "Terraform security group for nic with private IPs",
SecurityGroupName = "terraform-security-group-nic-ips",
NetId = net01.NetId,
});
});
package generated_program;
import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.outscale.Net;
import com.pulumi.outscale.NetArgs;
import com.pulumi.outscale.Subnet;
import com.pulumi.outscale.SubnetArgs;
import com.pulumi.outscale.SecurityGroup;
import com.pulumi.outscale.SecurityGroupArgs;
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 net01 = new Net("net01", NetArgs.builder()
.ipRange("10.0.0.0/16")
.build());
var subnet01 = new Subnet("subnet01", SubnetArgs.builder()
.subregionName("eu-west-2a")
.ipRange("10.0.0.0/18")
.netId(net01.netId())
.build());
var securityGroup01 = new SecurityGroup("securityGroup01", SecurityGroupArgs.builder()
.description("Terraform security group for nic with private IPs")
.securityGroupName("terraform-security-group-nic-ips")
.netId(net01.netId())
.build());
}
}
resources:
net01:
type: outscale:Net
properties:
ipRange: 10.0.0.0/16
subnet01:
type: outscale:Subnet
properties:
subregionName: eu-west-2a
ipRange: 10.0.0.0/18
netId: ${net01.netId}
securityGroup01:
type: outscale:SecurityGroup
properties:
description: Terraform security group for nic with private IPs
securityGroupName: terraform-security-group-nic-ips
netId: ${net01.netId}
Create a NIC
import * as pulumi from "@pulumi/pulumi";
import * as outscale from "@pulumi/outscale";
const nic01 = new outscale.Nic("nic01", {
subnetId: outscale_subnet.subnet01.subnet_id,
securityGroupIds: [outscale_security_group.security_group01.security_group_id],
});
import pulumi
import pulumi_outscale as outscale
nic01 = outscale.Nic("nic01",
subnet_id=outscale_subnet["subnet01"]["subnet_id"],
security_group_ids=[outscale_security_group["security_group01"]["security_group_id"]])
package main
import (
"github.com/pulumi/pulumi-terraform-provider/sdks/go/outscale/outscale"
"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
)
func main() {
pulumi.Run(func(ctx *pulumi.Context) error {
_, err := outscale.NewNic(ctx, "nic01", &outscale.NicArgs{
SubnetId: pulumi.Any(outscale_subnet.Subnet01.Subnet_id),
SecurityGroupIds: pulumi.StringArray{
outscale_security_group.Security_group01.Security_group_id,
},
})
if err != nil {
return err
}
return nil
})
}
using System.Collections.Generic;
using System.Linq;
using Pulumi;
using Outscale = Pulumi.Outscale;
return await Deployment.RunAsync(() =>
{
var nic01 = new Outscale.Nic("nic01", new()
{
SubnetId = outscale_subnet.Subnet01.Subnet_id,
SecurityGroupIds = new[]
{
outscale_security_group.Security_group01.Security_group_id,
},
});
});
package generated_program;
import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.outscale.Nic;
import com.pulumi.outscale.NicArgs;
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 nic01 = new Nic("nic01", NicArgs.builder()
.subnetId(outscale_subnet.subnet01().subnet_id())
.securityGroupIds(outscale_security_group.security_group01().security_group_id())
.build());
}
}
resources:
nic01:
type: outscale:Nic
properties:
subnetId: ${outscale_subnet.subnet01.subnet_id}
securityGroupIds:
- ${outscale_security_group.security_group01.security_group_id}
Create a NIC with private IP addresses
import * as pulumi from "@pulumi/pulumi";
import * as outscale from "@pulumi/outscale";
const nic02 = new outscale.Nic("nic02", {
description: "Terraform nic with private IPs",
subnetId: outscale_subnet.subnet01.subnet_id,
securityGroupIds: [outscale_security_group.security_group01.security_group_id],
privateIps: [
{
isPrimary: true,
privateIp: "10.0.0.1",
},
{
isPrimary: false,
privateIp: "10.0.0.2",
},
],
});
import pulumi
import pulumi_outscale as outscale
nic02 = outscale.Nic("nic02",
description="Terraform nic with private IPs",
subnet_id=outscale_subnet["subnet01"]["subnet_id"],
security_group_ids=[outscale_security_group["security_group01"]["security_group_id"]],
private_ips=[
{
"is_primary": True,
"private_ip": "10.0.0.1",
},
{
"is_primary": False,
"private_ip": "10.0.0.2",
},
])
package main
import (
"github.com/pulumi/pulumi-terraform-provider/sdks/go/outscale/outscale"
"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
)
func main() {
pulumi.Run(func(ctx *pulumi.Context) error {
_, err := outscale.NewNic(ctx, "nic02", &outscale.NicArgs{
Description: pulumi.String("Terraform nic with private IPs"),
SubnetId: pulumi.Any(outscale_subnet.Subnet01.Subnet_id),
SecurityGroupIds: pulumi.StringArray{
outscale_security_group.Security_group01.Security_group_id,
},
PrivateIps: outscale.NicPrivateIpTypeArray{
&outscale.NicPrivateIpTypeArgs{
IsPrimary: pulumi.Bool(true),
PrivateIp: pulumi.String("10.0.0.1"),
},
&outscale.NicPrivateIpTypeArgs{
IsPrimary: pulumi.Bool(false),
PrivateIp: pulumi.String("10.0.0.2"),
},
},
})
if err != nil {
return err
}
return nil
})
}
using System.Collections.Generic;
using System.Linq;
using Pulumi;
using Outscale = Pulumi.Outscale;
return await Deployment.RunAsync(() =>
{
var nic02 = new Outscale.Nic("nic02", new()
{
Description = "Terraform nic with private IPs",
SubnetId = outscale_subnet.Subnet01.Subnet_id,
SecurityGroupIds = new[]
{
outscale_security_group.Security_group01.Security_group_id,
},
PrivateIps = new[]
{
new Outscale.Inputs.NicPrivateIpArgs
{
IsPrimary = true,
PrivateIp = "10.0.0.1",
},
new Outscale.Inputs.NicPrivateIpArgs
{
IsPrimary = false,
PrivateIp = "10.0.0.2",
},
},
});
});
package generated_program;
import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.outscale.Nic;
import com.pulumi.outscale.NicArgs;
import com.pulumi.outscale.inputs.NicPrivateIpArgs;
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 nic02 = new Nic("nic02", NicArgs.builder()
.description("Terraform nic with private IPs")
.subnetId(outscale_subnet.subnet01().subnet_id())
.securityGroupIds(outscale_security_group.security_group01().security_group_id())
.privateIps(
NicPrivateIpArgs.builder()
.isPrimary(true)
.privateIp("10.0.0.1")
.build(),
NicPrivateIpArgs.builder()
.isPrimary(false)
.privateIp("10.0.0.2")
.build())
.build());
}
}
resources:
nic02:
type: outscale:Nic
properties:
description: Terraform nic with private IPs
subnetId: ${outscale_subnet.subnet01.subnet_id}
securityGroupIds:
- ${outscale_security_group.security_group01.security_group_id}
privateIps:
- isPrimary: true
privateIp: 10.0.0.1
- isPrimary: false
privateIp: 10.0.0.2
Create Nic Resource
Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.
Constructor syntax
new Nic(name: string, args: NicArgs, opts?: CustomResourceOptions);
@overload
def Nic(resource_name: str,
args: NicArgs,
opts: Optional[ResourceOptions] = None)
@overload
def Nic(resource_name: str,
opts: Optional[ResourceOptions] = None,
subnet_id: Optional[str] = None,
description: Optional[str] = None,
outscale_nic_id: Optional[str] = None,
private_ip: Optional[str] = None,
private_ips: Optional[Sequence[NicPrivateIpArgs]] = None,
security_group_ids: Optional[Sequence[str]] = None,
tags: Optional[Sequence[NicTagArgs]] = None,
timeouts: Optional[NicTimeoutsArgs] = None)
func NewNic(ctx *Context, name string, args NicArgs, opts ...ResourceOption) (*Nic, error)
public Nic(string name, NicArgs args, CustomResourceOptions? opts = null)
type: outscale:Nic
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 NicArgs
- 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 NicArgs
- 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 NicArgs
- The arguments to resource properties.
- opts ResourceOption
- Bag of options to control resource's behavior.
- name string
- The unique name of the resource.
- args NicArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- name String
- The unique name of the resource.
- args NicArgs
- 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 nicResource = new Outscale.Nic("nicResource", new()
{
SubnetId = "string",
Description = "string",
OutscaleNicId = "string",
PrivateIp = "string",
PrivateIps = new[]
{
new Outscale.Inputs.NicPrivateIpArgs
{
IsPrimary = false,
LinkPublicIps = new[]
{
new Outscale.Inputs.NicPrivateIpLinkPublicIpArgs
{
LinkPublicIpId = "string",
PublicDnsName = "string",
PublicIp = "string",
PublicIpAccountId = "string",
PublicIpId = "string",
},
},
PrivateDnsName = "string",
PrivateIp = "string",
},
},
SecurityGroupIds = new[]
{
"string",
},
Tags = new[]
{
new Outscale.Inputs.NicTagArgs
{
Key = "string",
Value = "string",
},
},
Timeouts = new Outscale.Inputs.NicTimeoutsArgs
{
Create = "string",
Delete = "string",
},
});
example, err := outscale.NewNic(ctx, "nicResource", &outscale.NicArgs{
SubnetId: pulumi.String("string"),
Description: pulumi.String("string"),
OutscaleNicId: pulumi.String("string"),
PrivateIp: pulumi.String("string"),
PrivateIps: .NicPrivateIpTypeArray{
&.NicPrivateIpTypeArgs{
IsPrimary: pulumi.Bool(false),
LinkPublicIps: .NicPrivateIpLinkPublicIpArray{
&.NicPrivateIpLinkPublicIpArgs{
LinkPublicIpId: pulumi.String("string"),
PublicDnsName: pulumi.String("string"),
PublicIp: pulumi.String("string"),
PublicIpAccountId: pulumi.String("string"),
PublicIpId: pulumi.String("string"),
},
},
PrivateDnsName: pulumi.String("string"),
PrivateIp: pulumi.String("string"),
},
},
SecurityGroupIds: pulumi.StringArray{
pulumi.String("string"),
},
Tags: .NicTagArray{
&.NicTagArgs{
Key: pulumi.String("string"),
Value: pulumi.String("string"),
},
},
Timeouts: &.NicTimeoutsArgs{
Create: pulumi.String("string"),
Delete: pulumi.String("string"),
},
})
var nicResource = new Nic("nicResource", NicArgs.builder()
.subnetId("string")
.description("string")
.outscaleNicId("string")
.privateIp("string")
.privateIps(NicPrivateIpArgs.builder()
.isPrimary(false)
.linkPublicIps(NicPrivateIpLinkPublicIpArgs.builder()
.linkPublicIpId("string")
.publicDnsName("string")
.publicIp("string")
.publicIpAccountId("string")
.publicIpId("string")
.build())
.privateDnsName("string")
.privateIp("string")
.build())
.securityGroupIds("string")
.tags(NicTagArgs.builder()
.key("string")
.value("string")
.build())
.timeouts(NicTimeoutsArgs.builder()
.create("string")
.delete("string")
.build())
.build());
nic_resource = outscale.Nic("nicResource",
subnet_id="string",
description="string",
outscale_nic_id="string",
private_ip="string",
private_ips=[{
"is_primary": False,
"link_public_ips": [{
"link_public_ip_id": "string",
"public_dns_name": "string",
"public_ip": "string",
"public_ip_account_id": "string",
"public_ip_id": "string",
}],
"private_dns_name": "string",
"private_ip": "string",
}],
security_group_ids=["string"],
tags=[{
"key": "string",
"value": "string",
}],
timeouts={
"create": "string",
"delete": "string",
})
const nicResource = new outscale.Nic("nicResource", {
subnetId: "string",
description: "string",
outscaleNicId: "string",
privateIp: "string",
privateIps: [{
isPrimary: false,
linkPublicIps: [{
linkPublicIpId: "string",
publicDnsName: "string",
publicIp: "string",
publicIpAccountId: "string",
publicIpId: "string",
}],
privateDnsName: "string",
privateIp: "string",
}],
securityGroupIds: ["string"],
tags: [{
key: "string",
value: "string",
}],
timeouts: {
create: "string",
"delete": "string",
},
});
type: outscale:Nic
properties:
description: string
outscaleNicId: string
privateIp: string
privateIps:
- isPrimary: false
linkPublicIps:
- linkPublicIpId: string
publicDnsName: string
publicIp: string
publicIpAccountId: string
publicIpId: string
privateDnsName: string
privateIp: string
securityGroupIds:
- string
subnetId: string
tags:
- key: string
value: string
timeouts:
create: string
delete: string
Nic 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 Nic resource accepts the following input properties:
- Subnet
Id string - The ID of the Subnet in which you want to create the NIC.
- Description string
- A description for the NIC.
- Outscale
Nic stringId - Private
Ip string - The private IP of the NIC.
- Private
Ips List<NicPrivate Ip> - The primary private IP for the NIC.
This IP must be within the IP range of the Subnet that you specify with the
subnet_id
attribute. If you do not specify this attribute, a random private IP is selected within the IP range of the Subnet. - Security
Group List<string>Ids - One or more IDs of security groups for the NIC.
- List<Nic
Tag> - A tag to add to this resource. You can specify this argument several times.
- Timeouts
Nic
Timeouts
- Subnet
Id string - The ID of the Subnet in which you want to create the NIC.
- Description string
- A description for the NIC.
- Outscale
Nic stringId - Private
Ip string - The private IP of the NIC.
- Private
Ips []NicPrivate Ip Type Args - The primary private IP for the NIC.
This IP must be within the IP range of the Subnet that you specify with the
subnet_id
attribute. If you do not specify this attribute, a random private IP is selected within the IP range of the Subnet. - Security
Group []stringIds - One or more IDs of security groups for the NIC.
- []Nic
Tag Args - A tag to add to this resource. You can specify this argument several times.
- Timeouts
Nic
Timeouts Args
- subnet
Id String - The ID of the Subnet in which you want to create the NIC.
- description String
- A description for the NIC.
- outscale
Nic StringId - private
Ip String - The private IP of the NIC.
- private
Ips List<NicPrivate Ip> - The primary private IP for the NIC.
This IP must be within the IP range of the Subnet that you specify with the
subnet_id
attribute. If you do not specify this attribute, a random private IP is selected within the IP range of the Subnet. - security
Group List<String>Ids - One or more IDs of security groups for the NIC.
- List<Nic
Tag> - A tag to add to this resource. You can specify this argument several times.
- timeouts
Nic
Timeouts
- subnet
Id string - The ID of the Subnet in which you want to create the NIC.
- description string
- A description for the NIC.
- outscale
Nic stringId - private
Ip string - The private IP of the NIC.
- private
Ips NicPrivate Ip[] - The primary private IP for the NIC.
This IP must be within the IP range of the Subnet that you specify with the
subnet_id
attribute. If you do not specify this attribute, a random private IP is selected within the IP range of the Subnet. - security
Group string[]Ids - One or more IDs of security groups for the NIC.
- Nic
Tag[] - A tag to add to this resource. You can specify this argument several times.
- timeouts
Nic
Timeouts
- subnet_
id str - The ID of the Subnet in which you want to create the NIC.
- description str
- A description for the NIC.
- outscale_
nic_ strid - private_
ip str - The private IP of the NIC.
- private_
ips Sequence[NicPrivate Ip Args] - The primary private IP for the NIC.
This IP must be within the IP range of the Subnet that you specify with the
subnet_id
attribute. If you do not specify this attribute, a random private IP is selected within the IP range of the Subnet. - security_
group_ Sequence[str]ids - One or more IDs of security groups for the NIC.
- Sequence[Nic
Tag Args] - A tag to add to this resource. You can specify this argument several times.
- timeouts
Nic
Timeouts Args
- subnet
Id String - The ID of the Subnet in which you want to create the NIC.
- description String
- A description for the NIC.
- outscale
Nic StringId - private
Ip String - The private IP of the NIC.
- private
Ips List<Property Map> - The primary private IP for the NIC.
This IP must be within the IP range of the Subnet that you specify with the
subnet_id
attribute. If you do not specify this attribute, a random private IP is selected within the IP range of the Subnet. - security
Group List<String>Ids - One or more IDs of security groups for the NIC.
- List<Property Map>
- A tag to add to this resource. You can specify this argument several times.
- timeouts Property Map
Outputs
All input properties are implicitly available as output properties. Additionally, the Nic resource produces the following output properties:
- Account
Id string - The account ID of the owner of the NIC.
- Id string
- The provider-assigned unique ID for this managed resource.
- Is
Source boolDest Checked - (Net only) If true, the source/destination check is enabled. If false, it is disabled.
- Link
Nics List<NicLink Nic> - Information about the NIC attachment.
- Link
Public List<NicIps Link Public Ip> - Information about the public IP association.
- Mac
Address string - The Media Access Control (MAC) address of the NIC.
- Net
Id string - The ID of the Net for the NIC.
- Nic
Id string - The ID of the NIC.
- Private
Dns stringName - The name of the private DNS.
- Request
Id string - Requester
Managed bool - Security
Groups List<NicSecurity Group> - One or more IDs of security groups for the NIC.
- State string
- The state of the NIC (
available
|attaching
|in-use
|detaching
). - Subregion
Name string - The Subregion in which the NIC is located.
- Account
Id string - The account ID of the owner of the NIC.
- Id string
- The provider-assigned unique ID for this managed resource.
- Is
Source boolDest Checked - (Net only) If true, the source/destination check is enabled. If false, it is disabled.
- Link
Nics []NicLink Nic - Information about the NIC attachment.
- Link
Public []NicIps Link Public Ip - Information about the public IP association.
- Mac
Address string - The Media Access Control (MAC) address of the NIC.
- Net
Id string - The ID of the Net for the NIC.
- Nic
Id string - The ID of the NIC.
- Private
Dns stringName - The name of the private DNS.
- Request
Id string - Requester
Managed bool - Security
Groups []NicSecurity Group - One or more IDs of security groups for the NIC.
- State string
- The state of the NIC (
available
|attaching
|in-use
|detaching
). - Subregion
Name string - The Subregion in which the NIC is located.
- account
Id String - The account ID of the owner of the NIC.
- id String
- The provider-assigned unique ID for this managed resource.
- is
Source BooleanDest Checked - (Net only) If true, the source/destination check is enabled. If false, it is disabled.
- link
Nics List<NicLink Nic> - Information about the NIC attachment.
- link
Public List<NicIps Link Public Ip> - Information about the public IP association.
- mac
Address String - The Media Access Control (MAC) address of the NIC.
- net
Id String - The ID of the Net for the NIC.
- nic
Id String - The ID of the NIC.
- private
Dns StringName - The name of the private DNS.
- request
Id String - requester
Managed Boolean - security
Groups List<NicSecurity Group> - One or more IDs of security groups for the NIC.
- state String
- The state of the NIC (
available
|attaching
|in-use
|detaching
). - subregion
Name String - The Subregion in which the NIC is located.
- account
Id string - The account ID of the owner of the NIC.
- id string
- The provider-assigned unique ID for this managed resource.
- is
Source booleanDest Checked - (Net only) If true, the source/destination check is enabled. If false, it is disabled.
- link
Nics NicLink Nic[] - Information about the NIC attachment.
- link
Public NicIps Link Public Ip[] - Information about the public IP association.
- mac
Address string - The Media Access Control (MAC) address of the NIC.
- net
Id string - The ID of the Net for the NIC.
- nic
Id string - The ID of the NIC.
- private
Dns stringName - The name of the private DNS.
- request
Id string - requester
Managed boolean - security
Groups NicSecurity Group[] - One or more IDs of security groups for the NIC.
- state string
- The state of the NIC (
available
|attaching
|in-use
|detaching
). - subregion
Name string - The Subregion in which the NIC is located.
- account_
id str - The account ID of the owner of the NIC.
- id str
- The provider-assigned unique ID for this managed resource.
- is_
source_ booldest_ checked - (Net only) If true, the source/destination check is enabled. If false, it is disabled.
- link_
nics Sequence[NicLink Nic] - Information about the NIC attachment.
- link_
public_ Sequence[Nicips Link Public Ip] - Information about the public IP association.
- mac_
address str - The Media Access Control (MAC) address of the NIC.
- net_
id str - The ID of the Net for the NIC.
- nic_
id str - The ID of the NIC.
- private_
dns_ strname - The name of the private DNS.
- request_
id str - requester_
managed bool - security_
groups Sequence[NicSecurity Group] - One or more IDs of security groups for the NIC.
- state str
- The state of the NIC (
available
|attaching
|in-use
|detaching
). - subregion_
name str - The Subregion in which the NIC is located.
- account
Id String - The account ID of the owner of the NIC.
- id String
- The provider-assigned unique ID for this managed resource.
- is
Source BooleanDest Checked - (Net only) If true, the source/destination check is enabled. If false, it is disabled.
- link
Nics List<Property Map> - Information about the NIC attachment.
- link
Public List<Property Map>Ips - Information about the public IP association.
- mac
Address String - The Media Access Control (MAC) address of the NIC.
- net
Id String - The ID of the Net for the NIC.
- nic
Id String - The ID of the NIC.
- private
Dns StringName - The name of the private DNS.
- request
Id String - requester
Managed Boolean - security
Groups List<Property Map> - One or more IDs of security groups for the NIC.
- state String
- The state of the NIC (
available
|attaching
|in-use
|detaching
). - subregion
Name String - The Subregion in which the NIC is located.
Look up Existing Nic Resource
Get an existing Nic 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?: NicState, opts?: CustomResourceOptions): Nic
@staticmethod
def get(resource_name: str,
id: str,
opts: Optional[ResourceOptions] = None,
account_id: Optional[str] = None,
description: Optional[str] = None,
is_source_dest_checked: Optional[bool] = None,
link_nics: Optional[Sequence[NicLinkNicArgs]] = None,
link_public_ips: Optional[Sequence[NicLinkPublicIpArgs]] = None,
mac_address: Optional[str] = None,
net_id: Optional[str] = None,
nic_id: Optional[str] = None,
outscale_nic_id: Optional[str] = None,
private_dns_name: Optional[str] = None,
private_ip: Optional[str] = None,
private_ips: Optional[Sequence[NicPrivateIpArgs]] = None,
request_id: Optional[str] = None,
requester_managed: Optional[bool] = None,
security_group_ids: Optional[Sequence[str]] = None,
security_groups: Optional[Sequence[NicSecurityGroupArgs]] = None,
state: Optional[str] = None,
subnet_id: Optional[str] = None,
subregion_name: Optional[str] = None,
tags: Optional[Sequence[NicTagArgs]] = None,
timeouts: Optional[NicTimeoutsArgs] = None) -> Nic
func GetNic(ctx *Context, name string, id IDInput, state *NicState, opts ...ResourceOption) (*Nic, error)
public static Nic Get(string name, Input<string> id, NicState? state, CustomResourceOptions? opts = null)
public static Nic get(String name, Output<String> id, NicState state, CustomResourceOptions options)
resources: _: type: outscale:Nic 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.
- Account
Id string - The account ID of the owner of the NIC.
- Description string
- A description for the NIC.
- Is
Source boolDest Checked - (Net only) If true, the source/destination check is enabled. If false, it is disabled.
- Link
Nics List<NicLink Nic> - Information about the NIC attachment.
- Link
Public List<NicIps Link Public Ip> - Information about the public IP association.
- Mac
Address string - The Media Access Control (MAC) address of the NIC.
- Net
Id string - The ID of the Net for the NIC.
- Nic
Id string - The ID of the NIC.
- Outscale
Nic stringId - Private
Dns stringName - The name of the private DNS.
- Private
Ip string - The private IP of the NIC.
- Private
Ips List<NicPrivate Ip> - The primary private IP for the NIC.
This IP must be within the IP range of the Subnet that you specify with the
subnet_id
attribute. If you do not specify this attribute, a random private IP is selected within the IP range of the Subnet. - Request
Id string - Requester
Managed bool - Security
Group List<string>Ids - One or more IDs of security groups for the NIC.
- Security
Groups List<NicSecurity Group> - One or more IDs of security groups for the NIC.
- State string
- The state of the NIC (
available
|attaching
|in-use
|detaching
). - Subnet
Id string - The ID of the Subnet in which you want to create the NIC.
- Subregion
Name string - The Subregion in which the NIC is located.
- List<Nic
Tag> - A tag to add to this resource. You can specify this argument several times.
- Timeouts
Nic
Timeouts
- Account
Id string - The account ID of the owner of the NIC.
- Description string
- A description for the NIC.
- Is
Source boolDest Checked - (Net only) If true, the source/destination check is enabled. If false, it is disabled.
- Link
Nics []NicLink Nic Args - Information about the NIC attachment.
- Link
Public []NicIps Link Public Ip Args - Information about the public IP association.
- Mac
Address string - The Media Access Control (MAC) address of the NIC.
- Net
Id string - The ID of the Net for the NIC.
- Nic
Id string - The ID of the NIC.
- Outscale
Nic stringId - Private
Dns stringName - The name of the private DNS.
- Private
Ip string - The private IP of the NIC.
- Private
Ips []NicPrivate Ip Type Args - The primary private IP for the NIC.
This IP must be within the IP range of the Subnet that you specify with the
subnet_id
attribute. If you do not specify this attribute, a random private IP is selected within the IP range of the Subnet. - Request
Id string - Requester
Managed bool - Security
Group []stringIds - One or more IDs of security groups for the NIC.
- Security
Groups []NicSecurity Group Args - One or more IDs of security groups for the NIC.
- State string
- The state of the NIC (
available
|attaching
|in-use
|detaching
). - Subnet
Id string - The ID of the Subnet in which you want to create the NIC.
- Subregion
Name string - The Subregion in which the NIC is located.
- []Nic
Tag Args - A tag to add to this resource. You can specify this argument several times.
- Timeouts
Nic
Timeouts Args
- account
Id String - The account ID of the owner of the NIC.
- description String
- A description for the NIC.
- is
Source BooleanDest Checked - (Net only) If true, the source/destination check is enabled. If false, it is disabled.
- link
Nics List<NicLink Nic> - Information about the NIC attachment.
- link
Public List<NicIps Link Public Ip> - Information about the public IP association.
- mac
Address String - The Media Access Control (MAC) address of the NIC.
- net
Id String - The ID of the Net for the NIC.
- nic
Id String - The ID of the NIC.
- outscale
Nic StringId - private
Dns StringName - The name of the private DNS.
- private
Ip String - The private IP of the NIC.
- private
Ips List<NicPrivate Ip> - The primary private IP for the NIC.
This IP must be within the IP range of the Subnet that you specify with the
subnet_id
attribute. If you do not specify this attribute, a random private IP is selected within the IP range of the Subnet. - request
Id String - requester
Managed Boolean - security
Group List<String>Ids - One or more IDs of security groups for the NIC.
- security
Groups List<NicSecurity Group> - One or more IDs of security groups for the NIC.
- state String
- The state of the NIC (
available
|attaching
|in-use
|detaching
). - subnet
Id String - The ID of the Subnet in which you want to create the NIC.
- subregion
Name String - The Subregion in which the NIC is located.
- List<Nic
Tag> - A tag to add to this resource. You can specify this argument several times.
- timeouts
Nic
Timeouts
- account
Id string - The account ID of the owner of the NIC.
- description string
- A description for the NIC.
- is
Source booleanDest Checked - (Net only) If true, the source/destination check is enabled. If false, it is disabled.
- link
Nics NicLink Nic[] - Information about the NIC attachment.
- link
Public NicIps Link Public Ip[] - Information about the public IP association.
- mac
Address string - The Media Access Control (MAC) address of the NIC.
- net
Id string - The ID of the Net for the NIC.
- nic
Id string - The ID of the NIC.
- outscale
Nic stringId - private
Dns stringName - The name of the private DNS.
- private
Ip string - The private IP of the NIC.
- private
Ips NicPrivate Ip[] - The primary private IP for the NIC.
This IP must be within the IP range of the Subnet that you specify with the
subnet_id
attribute. If you do not specify this attribute, a random private IP is selected within the IP range of the Subnet. - request
Id string - requester
Managed boolean - security
Group string[]Ids - One or more IDs of security groups for the NIC.
- security
Groups NicSecurity Group[] - One or more IDs of security groups for the NIC.
- state string
- The state of the NIC (
available
|attaching
|in-use
|detaching
). - subnet
Id string - The ID of the Subnet in which you want to create the NIC.
- subregion
Name string - The Subregion in which the NIC is located.
- Nic
Tag[] - A tag to add to this resource. You can specify this argument several times.
- timeouts
Nic
Timeouts
- account_
id str - The account ID of the owner of the NIC.
- description str
- A description for the NIC.
- is_
source_ booldest_ checked - (Net only) If true, the source/destination check is enabled. If false, it is disabled.
- link_
nics Sequence[NicLink Nic Args] - Information about the NIC attachment.
- link_
public_ Sequence[Nicips Link Public Ip Args] - Information about the public IP association.
- mac_
address str - The Media Access Control (MAC) address of the NIC.
- net_
id str - The ID of the Net for the NIC.
- nic_
id str - The ID of the NIC.
- outscale_
nic_ strid - private_
dns_ strname - The name of the private DNS.
- private_
ip str - The private IP of the NIC.
- private_
ips Sequence[NicPrivate Ip Args] - The primary private IP for the NIC.
This IP must be within the IP range of the Subnet that you specify with the
subnet_id
attribute. If you do not specify this attribute, a random private IP is selected within the IP range of the Subnet. - request_
id str - requester_
managed bool - security_
group_ Sequence[str]ids - One or more IDs of security groups for the NIC.
- security_
groups Sequence[NicSecurity Group Args] - One or more IDs of security groups for the NIC.
- state str
- The state of the NIC (
available
|attaching
|in-use
|detaching
). - subnet_
id str - The ID of the Subnet in which you want to create the NIC.
- subregion_
name str - The Subregion in which the NIC is located.
- Sequence[Nic
Tag Args] - A tag to add to this resource. You can specify this argument several times.
- timeouts
Nic
Timeouts Args
- account
Id String - The account ID of the owner of the NIC.
- description String
- A description for the NIC.
- is
Source BooleanDest Checked - (Net only) If true, the source/destination check is enabled. If false, it is disabled.
- link
Nics List<Property Map> - Information about the NIC attachment.
- link
Public List<Property Map>Ips - Information about the public IP association.
- mac
Address String - The Media Access Control (MAC) address of the NIC.
- net
Id String - The ID of the Net for the NIC.
- nic
Id String - The ID of the NIC.
- outscale
Nic StringId - private
Dns StringName - The name of the private DNS.
- private
Ip String - The private IP of the NIC.
- private
Ips List<Property Map> - The primary private IP for the NIC.
This IP must be within the IP range of the Subnet that you specify with the
subnet_id
attribute. If you do not specify this attribute, a random private IP is selected within the IP range of the Subnet. - request
Id String - requester
Managed Boolean - security
Group List<String>Ids - One or more IDs of security groups for the NIC.
- security
Groups List<Property Map> - One or more IDs of security groups for the NIC.
- state String
- The state of the NIC (
available
|attaching
|in-use
|detaching
). - subnet
Id String - The ID of the Subnet in which you want to create the NIC.
- subregion
Name String - The Subregion in which the NIC is located.
- List<Property Map>
- A tag to add to this resource. You can specify this argument several times.
- timeouts Property Map
Supporting Types
NicLinkNic, NicLinkNicArgs
- Delete
On stringVm Deletion - If true, the NIC is deleted when the VM is terminated.
- Device
Number double - The device index for the NIC attachment (between
1
and7
, both included). - Link
Nic stringId - The ID of the NIC to attach.
- State string
- The state of the NIC (
available
|attaching
|in-use
|detaching
). - Vm
Account stringId - The account ID of the owner of the VM.
- Vm
Id string - The ID of the VM.
- Delete
On stringVm Deletion - If true, the NIC is deleted when the VM is terminated.
- Device
Number float64 - The device index for the NIC attachment (between
1
and7
, both included). - Link
Nic stringId - The ID of the NIC to attach.
- State string
- The state of the NIC (
available
|attaching
|in-use
|detaching
). - Vm
Account stringId - The account ID of the owner of the VM.
- Vm
Id string - The ID of the VM.
- delete
On StringVm Deletion - If true, the NIC is deleted when the VM is terminated.
- device
Number Double - The device index for the NIC attachment (between
1
and7
, both included). - link
Nic StringId - The ID of the NIC to attach.
- state String
- The state of the NIC (
available
|attaching
|in-use
|detaching
). - vm
Account StringId - The account ID of the owner of the VM.
- vm
Id String - The ID of the VM.
- delete
On stringVm Deletion - If true, the NIC is deleted when the VM is terminated.
- device
Number number - The device index for the NIC attachment (between
1
and7
, both included). - link
Nic stringId - The ID of the NIC to attach.
- state string
- The state of the NIC (
available
|attaching
|in-use
|detaching
). - vm
Account stringId - The account ID of the owner of the VM.
- vm
Id string - The ID of the VM.
- delete_
on_ strvm_ deletion - If true, the NIC is deleted when the VM is terminated.
- device_
number float - The device index for the NIC attachment (between
1
and7
, both included). - link_
nic_ strid - The ID of the NIC to attach.
- state str
- The state of the NIC (
available
|attaching
|in-use
|detaching
). - vm_
account_ strid - The account ID of the owner of the VM.
- vm_
id str - The ID of the VM.
- delete
On StringVm Deletion - If true, the NIC is deleted when the VM is terminated.
- device
Number Number - The device index for the NIC attachment (between
1
and7
, both included). - link
Nic StringId - The ID of the NIC to attach.
- state String
- The state of the NIC (
available
|attaching
|in-use
|detaching
). - vm
Account StringId - The account ID of the owner of the VM.
- vm
Id String - The ID of the VM.
NicLinkPublicIp, NicLinkPublicIpArgs
- Link
Public stringIp Id - (Required in a Net) The ID representing the association of the public IP with the VM or the NIC.
- Public
Dns stringName - The name of the public DNS.
- Public
Ip string - The public IP associated with the NIC.
- Public
Ip stringAccount Id - The account ID of the owner of the public IP.
- Public
Ip stringId - The allocation ID of the public IP.
- Link
Public stringIp Id - (Required in a Net) The ID representing the association of the public IP with the VM or the NIC.
- Public
Dns stringName - The name of the public DNS.
- Public
Ip string - The public IP associated with the NIC.
- Public
Ip stringAccount Id - The account ID of the owner of the public IP.
- Public
Ip stringId - The allocation ID of the public IP.
- link
Public StringIp Id - (Required in a Net) The ID representing the association of the public IP with the VM or the NIC.
- public
Dns StringName - The name of the public DNS.
- public
Ip String - The public IP associated with the NIC.
- public
Ip StringAccount Id - The account ID of the owner of the public IP.
- public
Ip StringId - The allocation ID of the public IP.
- link
Public stringIp Id - (Required in a Net) The ID representing the association of the public IP with the VM or the NIC.
- public
Dns stringName - The name of the public DNS.
- public
Ip string - The public IP associated with the NIC.
- public
Ip stringAccount Id - The account ID of the owner of the public IP.
- public
Ip stringId - The allocation ID of the public IP.
- link_
public_ strip_ id - (Required in a Net) The ID representing the association of the public IP with the VM or the NIC.
- public_
dns_ strname - The name of the public DNS.
- public_
ip str - The public IP associated with the NIC.
- public_
ip_ straccount_ id - The account ID of the owner of the public IP.
- public_
ip_ strid - The allocation ID of the public IP.
- link
Public StringIp Id - (Required in a Net) The ID representing the association of the public IP with the VM or the NIC.
- public
Dns StringName - The name of the public DNS.
- public
Ip String - The public IP associated with the NIC.
- public
Ip StringAccount Id - The account ID of the owner of the public IP.
- public
Ip StringId - The allocation ID of the public IP.
NicPrivateIp, NicPrivateIpArgs
- Is
Primary bool - If true, the IP is the primary private IP of the NIC.
- Link
Public List<NicIps Private Ip Link Public Ip> - Information about the public IP association.
- Private
Dns stringName - The name of the private DNS.
- Private
Ip string - The private IP of the NIC.
- Is
Primary bool - If true, the IP is the primary private IP of the NIC.
- Link
Public []NicIps Private Ip Link Public Ip - Information about the public IP association.
- Private
Dns stringName - The name of the private DNS.
- Private
Ip string - The private IP of the NIC.
- is
Primary Boolean - If true, the IP is the primary private IP of the NIC.
- link
Public List<NicIps Private Ip Link Public Ip> - Information about the public IP association.
- private
Dns StringName - The name of the private DNS.
- private
Ip String - The private IP of the NIC.
- is
Primary boolean - If true, the IP is the primary private IP of the NIC.
- link
Public NicIps Private Ip Link Public Ip[] - Information about the public IP association.
- private
Dns stringName - The name of the private DNS.
- private
Ip string - The private IP of the NIC.
- is_
primary bool - If true, the IP is the primary private IP of the NIC.
- link_
public_ Sequence[Nicips Private Ip Link Public Ip] - Information about the public IP association.
- private_
dns_ strname - The name of the private DNS.
- private_
ip str - The private IP of the NIC.
- is
Primary Boolean - If true, the IP is the primary private IP of the NIC.
- link
Public List<Property Map>Ips - Information about the public IP association.
- private
Dns StringName - The name of the private DNS.
- private
Ip String - The private IP of the NIC.
NicPrivateIpLinkPublicIp, NicPrivateIpLinkPublicIpArgs
- Link
Public stringIp Id - (Required in a Net) The ID representing the association of the public IP with the VM or the NIC.
- Public
Dns stringName - The name of the public DNS.
- Public
Ip string - The public IP associated with the NIC.
- Public
Ip stringAccount Id - The account ID of the owner of the public IP.
- Public
Ip stringId - The allocation ID of the public IP.
- Link
Public stringIp Id - (Required in a Net) The ID representing the association of the public IP with the VM or the NIC.
- Public
Dns stringName - The name of the public DNS.
- Public
Ip string - The public IP associated with the NIC.
- Public
Ip stringAccount Id - The account ID of the owner of the public IP.
- Public
Ip stringId - The allocation ID of the public IP.
- link
Public StringIp Id - (Required in a Net) The ID representing the association of the public IP with the VM or the NIC.
- public
Dns StringName - The name of the public DNS.
- public
Ip String - The public IP associated with the NIC.
- public
Ip StringAccount Id - The account ID of the owner of the public IP.
- public
Ip StringId - The allocation ID of the public IP.
- link
Public stringIp Id - (Required in a Net) The ID representing the association of the public IP with the VM or the NIC.
- public
Dns stringName - The name of the public DNS.
- public
Ip string - The public IP associated with the NIC.
- public
Ip stringAccount Id - The account ID of the owner of the public IP.
- public
Ip stringId - The allocation ID of the public IP.
- link_
public_ strip_ id - (Required in a Net) The ID representing the association of the public IP with the VM or the NIC.
- public_
dns_ strname - The name of the public DNS.
- public_
ip str - The public IP associated with the NIC.
- public_
ip_ straccount_ id - The account ID of the owner of the public IP.
- public_
ip_ strid - The allocation ID of the public IP.
- link
Public StringIp Id - (Required in a Net) The ID representing the association of the public IP with the VM or the NIC.
- public
Dns StringName - The name of the public DNS.
- public
Ip String - The public IP associated with the NIC.
- public
Ip StringAccount Id - The account ID of the owner of the public IP.
- public
Ip StringId - The allocation ID of the public IP.
NicSecurityGroup, NicSecurityGroupArgs
- Security
Group stringId - The ID of the security group.
- Security
Group stringName - The name of the security group.
- Security
Group stringId - The ID of the security group.
- Security
Group stringName - The name of the security group.
- security
Group StringId - The ID of the security group.
- security
Group StringName - The name of the security group.
- security
Group stringId - The ID of the security group.
- security
Group stringName - The name of the security group.
- security_
group_ strid - The ID of the security group.
- security_
group_ strname - The name of the security group.
- security
Group StringId - The ID of the security group.
- security
Group StringName - The name of the security group.
NicTag, NicTagArgs
NicTimeouts, NicTimeoutsArgs
Import
A NIC can be imported using its ID. For example:
console
$ pulumi import outscale:index/nic:Nic ImportedNic eni-12345678
To learn more about importing existing cloud resources, see Importing resources.
Package Details
- Repository
- outscale outscale/terraform-provider-outscale
- License
- Notes
- This Pulumi package is based on the
outscale
Terraform Provider.