Skip to content

Instantly share code, notes, and snippets.

@f4rx
Created January 21, 2020 10:32
Show Gist options
  • Select an option

  • Save f4rx/4600e5401fd82bff1cab4b6bf241b169 to your computer and use it in GitHub Desktop.

Select an option

Save f4rx/4600e5401fd82bff1cab4b6bf241b169 to your computer and use it in GitHub Desktop.
terraform-1
resource "openstack_compute_flavor_v2" "flavor-node" {
name = "node.${var.project_id}-${random_string.random_name_1.result}"
ram = var.ram
vcpus = "1"
disk = "0"
is_public = "false"
}
output "server_internal_ip" {
value = openstack_compute_instance_v2.instance_1.access_ip_v4
}
variable "ram" {
default = 1024
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment