-
Notifications
You must be signed in to change notification settings - Fork 25
/
instance_dedicated_beacon.tf
56 lines (49 loc) · 1.69 KB
/
instance_dedicated_beacon.tf
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
# 26.04.2024: Disabled as the instance is still running in the old cloud.
# data "openstack_images_image_v2" "beacon-image" {
# # BW Cloud Rocky 9 basic image
# name = "Rocky 9.3"
# }
# resource "openstack_compute_instance_v2" "beacon" {
# name = "beacon.galaxyproject.eu"
# image_id = data.openstack_images_image_v2.beacon-image.id
# flavor_name = "m1.small"
# key_pair = "cloud2"
# tags = []
# security_groups = ["default", "public-web2"]
# network {
# name = "bioinf"
# }
# user_data = <<-EOF
# #cloud-config
# bootcmd:
# - test -z "$(blkid /dev/vdb)" && mkfs -t ext4 /dev/vdb
# - mkdir -p /data
# mounts:
# - ["/dev/vdb", "/data", auto, "defaults,nofail", "0", "2"]
# runcmd:
# - [ chown, "rocky.rocky", -R, /data ]
# package_update: true
# package_upgrade: true
# EOF
# }
# resource "aws_route53_record" "beacon-galaxyproject" {
# allow_overwrite = true
# zone_id = var.zone_galaxyproject_eu
# name = "beacon.galaxyproject.eu"
# type = "A"
# ttl = "600"
# records = ["${openstack_compute_instance_v2.beacon.access_ip_v4}"]
# }
# resource "random_id" "beacon-volume_name_unique" {
# byte_length = 8
# }
# resource "openstack_blockstorage_volume_v2" "beacon-vol" {
# name = "beacon-data-vol-${random_id.beacon-volume_name_unique.hex}"
# volume_type = "default"
# description = "Data volume for beacon VM"
# size = 128
# }
# resource "openstack_compute_volume_attach_v2" "beacon-va" {
# instance_id = openstack_compute_instance_v2.beacon.id
# volume_id = openstack_blockstorage_volume_v2.beacon-vol.id
# }