scaleway.instance.UserData
Explore with Pulumi AI
Creates and manages Scaleway compute Instance User Data values.
User data is a key value store API you can use to provide data from and to your server without authentication. It is the mechanism by which a user can pass information contained in a local file to an Instance at launch time.
The typical use case is to pass something like a shell script or a configuration file as user data.
For more information about user_data check our documentation guide here.
About cloud-init documentation please check this link.
Example Usage
Basic
import * as pulumi from "@pulumi/pulumi";
import * as scaleway from "@pulumiverse/scaleway";
const config = new pulumi.Config();
const userData = config.getObject<Record<string, any>>("userData") || {
"cloud-init": `#cloud-config
apt-update: true
apt-upgrade: true
`,
foo: "bar",
};
const mainServer = new scaleway.instance.Server("main", {
image: "ubuntu_focal",
type: "DEV1-S",
});
// User data with a single value
const main = new scaleway.instance.UserData("main", {
serverId: mainServer.id,
key: "foo",
value: "bar",
});
// User Data with many keys.
const data: scaleway.instance.UserData[] = [];
for (const range of Object.entries(userData).map(([k, v]) => ({key: k, value: v}))) {
data.push(new scaleway.instance.UserData(`data-${range.key}`, {
serverId: mainServer.id,
key: range.key,
value: range.value,
}));
}
import pulumi
import pulumiverse_scaleway as scaleway
config = pulumi.Config()
user_data = config.get_object("userData")
if user_data is None:
user_data = {
"cloud-init": """#cloud-config
apt-update: true
apt-upgrade: true
""",
"foo": "bar",
}
main_server = scaleway.instance.Server("main",
image="ubuntu_focal",
type="DEV1-S")
# User data with a single value
main = scaleway.instance.UserData("main",
server_id=main_server.id,
key="foo",
value="bar")
# User Data with many keys.
data = []
for range in [{"key": k, "value": v} for [k, v] in enumerate(user_data)]:
data.append(scaleway.instance.UserData(f"data-{range['key']}",
server_id=main_server.id,
key=range["key"],
value=range["value"]))
package main
import (
"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
"github.com/pulumi/pulumi/sdk/v3/go/pulumi/config"
"github.com/pulumiverse/pulumi-scaleway/sdk/go/scaleway/instance"
)
func main() {
pulumi.Run(func(ctx *pulumi.Context) error {
cfg := config.New(ctx, "")
userData := map[string]interface{}{
"cloud-init": "#cloud-config\napt-update: true\napt-upgrade: true\n",
"foo": "bar",
}
if param := cfg.GetObject("userData"); param != nil {
userData = param
}
mainServer, err := instance.NewServer(ctx, "main", &instance.ServerArgs{
Image: pulumi.String("ubuntu_focal"),
Type: pulumi.String("DEV1-S"),
})
if err != nil {
return err
}
// User data with a single value
_, err = instance.NewUserData(ctx, "main", &instance.UserDataArgs{
ServerId: mainServer.ID(),
Key: pulumi.String("foo"),
Value: pulumi.String("bar"),
})
if err != nil {
return err
}
// User Data with many keys.
var data []*instance.UserData
for key0, val0 := range userData {
__res, err := instance.NewUserData(ctx, fmt.Sprintf("data-%v", key0), &instance.UserDataArgs{
ServerId: mainServer.ID(),
Key: pulumi.String(key0),
Value: pulumi.Any(val0),
})
if err != nil {
return err
}
data = append(data, __res)
}
return nil
})
}
using System.Collections.Generic;
using System.Linq;
using Pulumi;
using Scaleway = Pulumiverse.Scaleway;
return await Deployment.RunAsync(() =>
{
var config = new Config();
var userData = config.GetObject<Dictionary<string, dynamic>>("userData") ??
{
{ "cloud-init", @"#cloud-config
apt-update: true
apt-upgrade: true
" },
{ "foo", "bar" },
};
var mainServer = new Scaleway.Instance.Server("main", new()
{
Image = "ubuntu_focal",
Type = "DEV1-S",
});
// User data with a single value
var main = new Scaleway.Instance.UserData("main", new()
{
ServerId = mainServer.Id,
Key = "foo",
Value = "bar",
});
// User Data with many keys.
var data = new List<Scaleway.Instance.UserData>();
foreach (var range in userData.Select(pair => new { pair.Key, pair.Value }))
{
data.Add(new Scaleway.Instance.UserData($"data-{range.Key}", new()
{
ServerId = mainServer.Id,
Key = range.Key,
Value = range.Value,
}));
}
});
package generated_program;
import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.scaleway.instance.Server;
import com.pulumi.scaleway.instance.ServerArgs;
import com.pulumi.scaleway.instance.UserData;
import com.pulumi.scaleway.instance.UserDataArgs;
import com.pulumi.codegen.internal.KeyedValue;
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 config = ctx.config();
final var userData = config.get("userData").orElse(%!v(PANIC=Format method: runtime error: invalid memory address or nil pointer dereference));
var mainServer = new Server("mainServer", ServerArgs.builder()
.image("ubuntu_focal")
.type("DEV1-S")
.build());
// User data with a single value
var main = new UserData("main", UserDataArgs.builder()
.serverId(mainServer.id())
.key("foo")
.value("bar")
.build());
// User Data with many keys.
for (var range : KeyedValue.of(userData)) {
new UserData("data-" + range.key(), UserDataArgs.builder()
.serverId(mainServer.id())
.key(range.key())
.value(range.value())
.build());
}
}
}
configuration:
userData:
type: map(dynamic)
default:
cloud-init: |
#cloud-config
apt-update: true
apt-upgrade: true
foo: bar
resources:
# User data with a single value
main:
type: scaleway:instance:UserData
properties:
serverId: ${mainServer.id}
key: foo
value: bar
# User Data with many keys.
data:
type: scaleway:instance:UserData
properties:
serverId: ${mainServer.id}
key: ${range.key}
value: ${range.value}
options: {}
mainServer:
type: scaleway:instance:Server
name: main
properties:
image: ubuntu_focal
type: DEV1-S
Create UserData Resource
Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.
Constructor syntax
new UserData(name: string, args: UserDataArgs, opts?: CustomResourceOptions);
@overload
def UserData(resource_name: str,
args: UserDataArgs,
opts: Optional[ResourceOptions] = None)
@overload
def UserData(resource_name: str,
opts: Optional[ResourceOptions] = None,
key: Optional[str] = None,
server_id: Optional[str] = None,
value: Optional[str] = None,
zone: Optional[str] = None)
func NewUserData(ctx *Context, name string, args UserDataArgs, opts ...ResourceOption) (*UserData, error)
public UserData(string name, UserDataArgs args, CustomResourceOptions? opts = null)
public UserData(String name, UserDataArgs args)
public UserData(String name, UserDataArgs args, CustomResourceOptions options)
type: scaleway:instance:UserData
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 UserDataArgs
- 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 UserDataArgs
- 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 UserDataArgs
- The arguments to resource properties.
- opts ResourceOption
- Bag of options to control resource's behavior.
- name string
- The unique name of the resource.
- args UserDataArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- name String
- The unique name of the resource.
- args UserDataArgs
- 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 userDataResource = new Scaleway.Instance.UserData("userDataResource", new()
{
Key = "string",
ServerId = "string",
Value = "string",
Zone = "string",
});
example, err := instance.NewUserData(ctx, "userDataResource", &instance.UserDataArgs{
Key: pulumi.String("string"),
ServerId: pulumi.String("string"),
Value: pulumi.String("string"),
Zone: pulumi.String("string"),
})
var userDataResource = new UserData("userDataResource", UserDataArgs.builder()
.key("string")
.serverId("string")
.value("string")
.zone("string")
.build());
user_data_resource = scaleway.instance.UserData("userDataResource",
key="string",
server_id="string",
value="string",
zone="string")
const userDataResource = new scaleway.instance.UserData("userDataResource", {
key: "string",
serverId: "string",
value: "string",
zone: "string",
});
type: scaleway:instance:UserData
properties:
key: string
serverId: string
value: string
zone: string
UserData 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 UserData resource accepts the following input properties:
- Key string
- Key of the user data.
- Server
Id string - The ID of the server associated with.
- Value string
- Value associated with your key
- Zone string
zone
) The zone in which the server should be created.Important: Use the
cloud-init
key to use cloud-init on your instance. You can define values using:- string
- UTF-8 encoded file content using file
- Key string
- Key of the user data.
- Server
Id string - The ID of the server associated with.
- Value string
- Value associated with your key
- Zone string
zone
) The zone in which the server should be created.Important: Use the
cloud-init
key to use cloud-init on your instance. You can define values using:- string
- UTF-8 encoded file content using file
- key String
- Key of the user data.
- server
Id String - The ID of the server associated with.
- value String
- Value associated with your key
- zone String
zone
) The zone in which the server should be created.Important: Use the
cloud-init
key to use cloud-init on your instance. You can define values using:- string
- UTF-8 encoded file content using file
- key string
- Key of the user data.
- server
Id string - The ID of the server associated with.
- value string
- Value associated with your key
- zone string
zone
) The zone in which the server should be created.Important: Use the
cloud-init
key to use cloud-init on your instance. You can define values using:- string
- UTF-8 encoded file content using file
- key str
- Key of the user data.
- server_
id str - The ID of the server associated with.
- value str
- Value associated with your key
- zone str
zone
) The zone in which the server should be created.Important: Use the
cloud-init
key to use cloud-init on your instance. You can define values using:- string
- UTF-8 encoded file content using file
- key String
- Key of the user data.
- server
Id String - The ID of the server associated with.
- value String
- Value associated with your key
- zone String
zone
) The zone in which the server should be created.Important: Use the
cloud-init
key to use cloud-init on your instance. You can define values using:- string
- UTF-8 encoded file content using file
Outputs
All input properties are implicitly available as output properties. Additionally, the UserData 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 UserData Resource
Get an existing UserData 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?: UserDataState, opts?: CustomResourceOptions): UserData
@staticmethod
def get(resource_name: str,
id: str,
opts: Optional[ResourceOptions] = None,
key: Optional[str] = None,
server_id: Optional[str] = None,
value: Optional[str] = None,
zone: Optional[str] = None) -> UserData
func GetUserData(ctx *Context, name string, id IDInput, state *UserDataState, opts ...ResourceOption) (*UserData, error)
public static UserData Get(string name, Input<string> id, UserDataState? state, CustomResourceOptions? opts = null)
public static UserData get(String name, Output<String> id, UserDataState state, CustomResourceOptions options)
resources: _: type: scaleway:instance:UserData 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.
- Key string
- Key of the user data.
- Server
Id string - The ID of the server associated with.
- Value string
- Value associated with your key
- Zone string
zone
) The zone in which the server should be created.Important: Use the
cloud-init
key to use cloud-init on your instance. You can define values using:- string
- UTF-8 encoded file content using file
- Key string
- Key of the user data.
- Server
Id string - The ID of the server associated with.
- Value string
- Value associated with your key
- Zone string
zone
) The zone in which the server should be created.Important: Use the
cloud-init
key to use cloud-init on your instance. You can define values using:- string
- UTF-8 encoded file content using file
- key String
- Key of the user data.
- server
Id String - The ID of the server associated with.
- value String
- Value associated with your key
- zone String
zone
) The zone in which the server should be created.Important: Use the
cloud-init
key to use cloud-init on your instance. You can define values using:- string
- UTF-8 encoded file content using file
- key string
- Key of the user data.
- server
Id string - The ID of the server associated with.
- value string
- Value associated with your key
- zone string
zone
) The zone in which the server should be created.Important: Use the
cloud-init
key to use cloud-init on your instance. You can define values using:- string
- UTF-8 encoded file content using file
- key str
- Key of the user data.
- server_
id str - The ID of the server associated with.
- value str
- Value associated with your key
- zone str
zone
) The zone in which the server should be created.Important: Use the
cloud-init
key to use cloud-init on your instance. You can define values using:- string
- UTF-8 encoded file content using file
- key String
- Key of the user data.
- server
Id String - The ID of the server associated with.
- value String
- Value associated with your key
- zone String
zone
) The zone in which the server should be created.Important: Use the
cloud-init
key to use cloud-init on your instance. You can define values using:- string
- UTF-8 encoded file content using file
Import
User data can be imported using the {zone}/{key}/{server_id}
, e.g.
bash
$ pulumi import scaleway:instance/userData:UserData main fr-par-1/cloud-init/11111111-1111-1111-1111-111111111111
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.