3.1 KiB
layout | page_title | sidebar_current | description |
---|---|---|---|
triton | Triton: triton_machine | docs-triton-resource-machine | The `triton_machine` resource represents a virtual machine or infrastructure container running in Triton. |
triton_machine
The triton_machine
resource represents a virtual machine or infrastructure container running in Triton.
Example Usages
Run a SmartOS base-64 machine.
resource "triton_machine" "test-smartos" {
name = "test-smartos"
package = "g3-standard-0.25-smartos"
image = "842e6fa6-6e9b-11e5-8402-1b490459e334"
tags = {
hello = "world"
}
}
Run an Ubuntu 14.04 LTS machine.
resource "triton_machine" "test-ubuntu" {
name = "test-ubuntu"
package = "g4-general-4G"
image = "1996a1d6-c0d9-11e6-8b80-4772e39dc920"
firewall_enabled = true
root_authorized_keys = "Example Key"
user_script = "#!/bin/bash\necho 'testing user-script' >> /tmp/test.out\nhostname $IMAGENAME"
tags = {
purpose = "testing ubuntu"
} ## tags
} ## resource
Argument Reference
The following arguments are supported:
-
name
- (string) The friendly name for the machine. Triton will generate a name if one is not specified. -
tags
- (map) A mapping of tags to apply to the machine. -
package
- (string, Required) The name of the package to use for provisioning. -
image
- (string, Required) The UUID of the image to provision. -
nic
- (list of NIC blocks, Optional) NICs associated with the machine. The fields allowed in aNIC
block are defined below. -
firewall_enabled
- (boolean) Default:false
Whether the cloud firewall should be enabled for this machine. -
root_authorized_keys
- (string) The public keys authorized for root access via SSH to the machine. -
user_data
- (string) Data to be copied to the machine on boot. -
user_script
- (string) The user script to run on boot (every boot on SmartMachines). -
administrator_pw
- (string) The initial password for the Administrator user. Only used for Windows virtual machines.
The nested nic
block supports the following:
network
- (string, Optional) The network id to attach to the network interface. It will be hex, in the format:xxxxxxxx-xxxx-xxxx-xxxx-xxxxxxxxxxxx
.
Attribute Reference
The following attributes are exported:
id
- (string) - The identifier representing the firewall rule in Triton.type
- (string) - The type of the machine (smartmachine
orvirtualmachine
).state
- (string) - The current state of the machine.dataset
- (string) - The dataset URN with which the machine was provisioned.memory
- (int) - The amount of memory the machine has (in Mb).disk
- (int) - The amount of disk the machine has (in Gb).ips
- (list of strings) - IP addresses of the machine.primaryip
- (string) - The primary (public) IP address for the machine.created
- (string) - The time at which the machine was created.updated
- (string) - The time at which the machine was last updated.