Created
May 24, 2018 04:36
-
-
Save jugatsu/638ccbe1f7347e71162e5cdff0bcb566 to your computer and use it in GitHub Desktop.
os-create
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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