paws.compute (version 0.1.0)

lightsail_create_instances: Creates one or more Amazon Lightsail virtual private servers, or instances

Description

Creates one or more Amazon Lightsail virtual private servers, or instances. Create instances using active blueprints. Inactive blueprints are listed to support customers with existing instances but are not necessarily available for launch of new instances. Blueprints are marked inactive when they become outdated due to operating system updates or new application releases. Use the get blueprints operation to return a list of available blueprints.

Usage

lightsail_create_instances(instanceNames, availabilityZone,
  customImageName, blueprintId, bundleId, userData, keyPairName, tags)

Arguments

instanceNames

[required] The names to use for your new Lightsail instances. Separate multiple values using quotation marks and commas, for example: \["MyFirstInstance","MySecondInstance"\]

availabilityZone

[required] The Availability Zone in which to create your instance. Use the following format: us-east-2a (case sensitive). You can get a list of Availability Zones by using the get regions operation. Be sure to add the include Availability Zones parameter to your request.

customImageName

(Deprecated) The name for your custom image.

In releases prior to June 12, 2017, this parameter was ignored by the API. It is now deprecated.

blueprintId

[required] The ID for a virtual private server image (e.g., app_wordpress_4_4 or app_lamp_7_0). Use the get blueprints operation to return a list of available images (or blueprints).

bundleId

[required] The bundle of specification information for your virtual private server (or instance), including the pricing plan (e.g., micro_1_0).

userData

A launch script you can create that configures a server with additional user data. For example, you might want to run apt-get -y update.

Depending on the machine image you choose, the command to get software on your instance varies. Amazon Linux and CentOS use yum, Debian and Ubuntu use apt-get, and FreeBSD uses pkg. For a complete list, see the Dev Guide.

keyPairName

The name of your key pair.

tags

The tag keys and optional values to add to the resource during create.

To tag a resource after it has been created, see the tag resource operation.

Request syntax

svc$create_instances(
  instanceNames = list(
    "string"
  ),
  availabilityZone = "string",
  customImageName = "string",
  blueprintId = "string",
  bundleId = "string",
  userData = "string",
  keyPairName = "string",
  tags = list(
    list(
      key = "string",
      value = "string"
    )
  )
)

Details

The create instances operation supports tag-based access control via request tags. For more information, see the Lightsail Dev Guide.