Skip to content

Instantly share code, notes, and snippets.

@jugatsu
Created May 24, 2018 04:36
Show Gist options
  • Save jugatsu/638ccbe1f7347e71162e5cdff0bcb566 to your computer and use it in GitHub Desktop.
Save jugatsu/638ccbe1f7347e71162e5cdff0bcb566 to your computer and use it in GitHub Desktop.
os-create
resource "openstack_compute_instance_v2" "basic" {
name = "basic"
flavor_name = "general.nano.dme.linux"
image_id = "8327cbb4-c573-464d-b5c0-c8c33409c7b2"
key_pair = "ak-pc"
user_data = ""
network {
name = "default-network"
}
lifecycle {
ignore_changes = ["name", "block_device", "user_data"]
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment