1
0
Fork 0

add vultr block storage mount

This commit is contained in:
michael 2024-04-19 17:31:44 +12:00
parent f68c6b227a
commit 43dbb951fe
1 changed files with 17 additions and 1 deletions

View File

@ -15,6 +15,22 @@ resource "vultr_kubernetes" "k8s" {
resource "local_sensitive_file" "kubeconfig" {
content_base64 = vultr_kubernetes.k8s.kube_config
filename = "~/.kube/vultr"
filename = pathexpand("~/.kube/vultr")
file_permission = "0600"
}
resource "vultr_block_storage" "ssd0" {
label = "cluster00-ssd0"
size_gb = 10
region = "ewr"
block_type = "high_perf"
attached_to_instance = vultr_kubernetes.k8s.node_pools[0].nodes[0].id
live = true
depends_on = [
vultr_kubernetes.k8s
]
}
output "ssd0_mount" {
value = vultr_block_storage.ssd0.mount_id
}