Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add a BioHackathon 2023 dedicated VM #180

Merged
merged 1 commit into from
Oct 27, 2023
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
49 changes: 49 additions & 0 deletions instance_dedicated_biohackathon.tf
Original file line number Diff line number Diff line change
@@ -0,0 +1,49 @@
data "openstack_images_image_v2" "biohackathon-image" {
name = "Rocky 9.0"
}

resource "openstack_compute_instance_v2" "biohackathon" {
name = "biohackathon 2023 dedicated VM"
image_id = data.openstack_images_image_v2.biohackathon-image.id
flavor_name = "c1.c36m100d50"
key_pair = "cloud2"
security_groups = ["default"]

network {
name = "public"
}

user_data = <<-EOF
#cloud-config
bootcmd:
- test -z "$(blkid /dev/vdb)" && mkfs -t ext4 /dev/vdb
- mkdir -p /scratch
mounts:
- ["/dev/vdb", "/scratch", auto, "defaults,nofail", "0", "2"]
runcmd:
- [ chown, "rocky.rocky", -R, /scratch ]
package_update: true
package_upgrade: true
users:
- default
ssh_authorized_keys:
- "ecdsa-sha2-nistp521 AAAAE2VjZHNhLXNoYTItbmlzdHA1MjEAAAAIbmlzdHA1MjEAAACFBAGHsfT+pkgaWoeMSTcbMCVidZFpCb6DWBChBzi5OQPctj6h66NfuE4S2LDY1dr9ZpfRTu3+4J6ucB9LOLcKWtVS5AAErBxZ72YEu9jGEZqgcrPvJuASDcLy01K0YczJFmxpOPepIJhPGSFPgHaUUW4t4qMjUGxxutbAXhyMkl6/PiMucA== biohackathon"
EOF
}


resource "random_id" "biohackathon-volume_name_unique" {
byte_length = 8
}

resource "openstack_blockstorage_volume_v2" "biohackathon-vol" {
name = "biohackathon-data-vol-${random_id.biohackathon-volume_name_unique.hex}"
volume_type = "default"
description = "Data volume for biohackathon VM"
size = 1000
}

resource "openstack_compute_volume_attach_v2" "biohackathon-va" {
instance_id = openstack_compute_instance_v2.biohackathon.id
volume_id = openstack_blockstorage_volume_v2.biohackathon-vol.id
}
Loading