civo.InstanceReservedIpAssignment
Explore with Pulumi AI
The instance reserved ip assignment resource schema definition
Example Usage
import * as pulumi from "@pulumi/pulumi";
import * as civo from "@pulumi/civo";
// Send to create a reserved IP
const www = new civo.ReservedIp("www", {name: "nginx-www"});
// We assign the reserved IP to the instance
const webserver_www = new civo.InstanceReservedIpAssignment("webserver-www", {
instanceId: wwwCivoInstance.id,
reservedIpId: web_server.id,
});
import pulumi
import pulumi_civo as civo
# Send to create a reserved IP
www = civo.ReservedIp("www", name="nginx-www")
# We assign the reserved IP to the instance
webserver_www = civo.InstanceReservedIpAssignment("webserver-www",
instance_id=www_civo_instance["id"],
reserved_ip_id=web_server["id"])
package main
import (
"github.com/pulumi/pulumi-civo/sdk/v2/go/civo"
"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
)
func main() {
pulumi.Run(func(ctx *pulumi.Context) error {
// Send to create a reserved IP
_, err := civo.NewReservedIp(ctx, "www", &civo.ReservedIpArgs{
Name: pulumi.String("nginx-www"),
})
if err != nil {
return err
}
// We assign the reserved IP to the instance
_, err = civo.NewInstanceReservedIpAssignment(ctx, "webserver-www", &civo.InstanceReservedIpAssignmentArgs{
InstanceId: pulumi.Any(wwwCivoInstance.Id),
ReservedIpId: pulumi.Any(web_server.Id),
})
if err != nil {
return err
}
return nil
})
}
using System.Collections.Generic;
using System.Linq;
using Pulumi;
using Civo = Pulumi.Civo;
return await Deployment.RunAsync(() =>
{
// Send to create a reserved IP
var www = new Civo.ReservedIp("www", new()
{
Name = "nginx-www",
});
// We assign the reserved IP to the instance
var webserver_www = new Civo.InstanceReservedIpAssignment("webserver-www", new()
{
InstanceId = wwwCivoInstance.Id,
ReservedIpId = web_server.Id,
});
});
package generated_program;
import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.civo.ReservedIp;
import com.pulumi.civo.ReservedIpArgs;
import com.pulumi.civo.InstanceReservedIpAssignment;
import com.pulumi.civo.InstanceReservedIpAssignmentArgs;
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) {
// Send to create a reserved IP
var www = new ReservedIp("www", ReservedIpArgs.builder()
.name("nginx-www")
.build());
// We assign the reserved IP to the instance
var webserver_www = new InstanceReservedIpAssignment("webserver-www", InstanceReservedIpAssignmentArgs.builder()
.instanceId(wwwCivoInstance.id())
.reservedIpId(web_server.id())
.build());
}
}
resources:
# Send to create a reserved IP
www:
type: civo:ReservedIp
properties:
name: nginx-www
# We assign the reserved IP to the instance
webserver-www:
type: civo:InstanceReservedIpAssignment
properties:
instanceId: ${wwwCivoInstance.id}
reservedIpId: ${["web-server"].id}
Create InstanceReservedIpAssignment Resource
Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.
Constructor syntax
new InstanceReservedIpAssignment(name: string, args: InstanceReservedIpAssignmentArgs, opts?: CustomResourceOptions);
@overload
def InstanceReservedIpAssignment(resource_name: str,
args: InstanceReservedIpAssignmentArgs,
opts: Optional[ResourceOptions] = None)
@overload
def InstanceReservedIpAssignment(resource_name: str,
opts: Optional[ResourceOptions] = None,
instance_id: Optional[str] = None,
reserved_ip_id: Optional[str] = None,
region: Optional[str] = None)
func NewInstanceReservedIpAssignment(ctx *Context, name string, args InstanceReservedIpAssignmentArgs, opts ...ResourceOption) (*InstanceReservedIpAssignment, error)
public InstanceReservedIpAssignment(string name, InstanceReservedIpAssignmentArgs args, CustomResourceOptions? opts = null)
public InstanceReservedIpAssignment(String name, InstanceReservedIpAssignmentArgs args)
public InstanceReservedIpAssignment(String name, InstanceReservedIpAssignmentArgs args, CustomResourceOptions options)
type: civo:InstanceReservedIpAssignment
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 InstanceReservedIpAssignmentArgs
- 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 InstanceReservedIpAssignmentArgs
- 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 InstanceReservedIpAssignmentArgs
- The arguments to resource properties.
- opts ResourceOption
- Bag of options to control resource's behavior.
- name string
- The unique name of the resource.
- args InstanceReservedIpAssignmentArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- name String
- The unique name of the resource.
- args InstanceReservedIpAssignmentArgs
- 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 instanceReservedIpAssignmentResource = new Civo.InstanceReservedIpAssignment("instanceReservedIpAssignmentResource", new()
{
InstanceId = "string",
ReservedIpId = "string",
Region = "string",
});
example, err := civo.NewInstanceReservedIpAssignment(ctx, "instanceReservedIpAssignmentResource", &civo.InstanceReservedIpAssignmentArgs{
InstanceId: pulumi.String("string"),
ReservedIpId: pulumi.String("string"),
Region: pulumi.String("string"),
})
var instanceReservedIpAssignmentResource = new InstanceReservedIpAssignment("instanceReservedIpAssignmentResource", InstanceReservedIpAssignmentArgs.builder()
.instanceId("string")
.reservedIpId("string")
.region("string")
.build());
instance_reserved_ip_assignment_resource = civo.InstanceReservedIpAssignment("instanceReservedIpAssignmentResource",
instance_id="string",
reserved_ip_id="string",
region="string")
const instanceReservedIpAssignmentResource = new civo.InstanceReservedIpAssignment("instanceReservedIpAssignmentResource", {
instanceId: "string",
reservedIpId: "string",
region: "string",
});
type: civo:InstanceReservedIpAssignment
properties:
instanceId: string
region: string
reservedIpId: string
InstanceReservedIpAssignment 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 InstanceReservedIpAssignment resource accepts the following input properties:
- Instance
Id string - The instance id
- Reserved
Ip stringId - The reserved ip id
- Region string
- The region of the ip
- Instance
Id string - The instance id
- Reserved
Ip stringId - The reserved ip id
- Region string
- The region of the ip
- instance
Id String - The instance id
- reserved
Ip StringId - The reserved ip id
- region String
- The region of the ip
- instance
Id string - The instance id
- reserved
Ip stringId - The reserved ip id
- region string
- The region of the ip
- instance_
id str - The instance id
- reserved_
ip_ strid - The reserved ip id
- region str
- The region of the ip
- instance
Id String - The instance id
- reserved
Ip StringId - The reserved ip id
- region String
- The region of the ip
Outputs
All input properties are implicitly available as output properties. Additionally, the InstanceReservedIpAssignment resource produces the following output properties:
- Id string
- The provider-assigned unique ID for this managed resource.
- Id string
- The provider-assigned unique ID for this managed resource.
- id String
- The provider-assigned unique ID for this managed resource.
- id string
- The provider-assigned unique ID for this managed resource.
- id str
- The provider-assigned unique ID for this managed resource.
- id String
- The provider-assigned unique ID for this managed resource.
Look up Existing InstanceReservedIpAssignment Resource
Get an existing InstanceReservedIpAssignment 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?: InstanceReservedIpAssignmentState, opts?: CustomResourceOptions): InstanceReservedIpAssignment
@staticmethod
def get(resource_name: str,
id: str,
opts: Optional[ResourceOptions] = None,
instance_id: Optional[str] = None,
region: Optional[str] = None,
reserved_ip_id: Optional[str] = None) -> InstanceReservedIpAssignment
func GetInstanceReservedIpAssignment(ctx *Context, name string, id IDInput, state *InstanceReservedIpAssignmentState, opts ...ResourceOption) (*InstanceReservedIpAssignment, error)
public static InstanceReservedIpAssignment Get(string name, Input<string> id, InstanceReservedIpAssignmentState? state, CustomResourceOptions? opts = null)
public static InstanceReservedIpAssignment get(String name, Output<String> id, InstanceReservedIpAssignmentState 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.
- Instance
Id string - The instance id
- Region string
- The region of the ip
- Reserved
Ip stringId - The reserved ip id
- Instance
Id string - The instance id
- Region string
- The region of the ip
- Reserved
Ip stringId - The reserved ip id
- instance
Id String - The instance id
- region String
- The region of the ip
- reserved
Ip StringId - The reserved ip id
- instance
Id string - The instance id
- region string
- The region of the ip
- reserved
Ip stringId - The reserved ip id
- instance_
id str - The instance id
- region str
- The region of the ip
- reserved_
ip_ strid - The reserved ip id
- instance
Id String - The instance id
- region String
- The region of the ip
- reserved
Ip StringId - The reserved ip id
Package Details
- Repository
- Civo pulumi/pulumi-civo
- License
- Apache-2.0
- Notes
- This Pulumi package is based on the
civo
Terraform Provider.