Creates one or more Amazon Lightsail instances
Source:R/lightsail_operations.R
lightsail_create_instances.RdCreates one or more Amazon Lightsail instances.
See https://www.paws-r-sdk.com/docs/lightsail_create_instances/ for full documentation.
Usage
lightsail_create_instances(
instanceNames,
availabilityZone,
customImageName = NULL,
blueprintId,
bundleId,
userData = NULL,
keyPairName = NULL,
tags = NULL,
addOns = NULL,
ipAddressType = NULL
)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 theinclude Availability Zonesparameter to your request.- customImageName
(Discontinued) The name for your custom image.
In releases prior to June 12, 2017, this parameter was ignored by the API. It is now discontinued.
- blueprintId
[required] The ID for a virtual private server image (
app_wordpress_x_xorapp_lamp_x_x). Use theget blueprintsoperation to return a list of available images (or blueprints).Use active blueprints when creating new instances. Inactive blueprints are listed to support customers with existing instances and are not necessarily available to create new instances. Blueprints are marked inactive when they become outdated due to operating system updates or new application releases.
- bundleId
[required] The bundle of specification information for your virtual private server (or instance), including the pricing plan (
medium_x_x).- 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 useapt-get, and FreeBSD usespkg. For a complete list, see the Amazon Lightsail Developer Guide.- keyPairName
The name of your key pair.
The tag keys and optional values to add to the resource during create.
Use the
tag_resourceaction to tag a resource after it's created.- addOns
An array of objects representing the add-ons to enable for the new instance.
- ipAddressType
The IP address type for the instance.
The possible values are
ipv4for IPv4 only,ipv6for IPv6 only, anddualstackfor IPv4 and IPv6.The default value is
dualstack.