You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
resource "civo_instance""my-test-instance" {
hostname = "test-terraform"
initial_user = "root"
size = "g2.large"
tags = ["hello", "test"]
# template = "id"# network_id = civo_network.custom_net.id // this will be calculate automatic# depends_on = [civo_network.custom_net] // this is to wait for the creation of the network
}
Create a Volume
resource "civo_volume""custom_volume" {
name = "backup-data"
size_gb = 60
bootable = false# instance_id = civo_instance.my-test-instance.id // this will be calculate automatic# depends_on = [civo_instance.my-test-instance] // this is to wait for the creation of the instances
}