Providers, datacenters and server types
This guide willexplain listhow theto find available options for provider_name, datacenter and server_type variables when you want to manage a service resource with terraform :
resource "elestio_vault" "my_vault" {
...
provider_name = "hetzner"
datacenter = "fsn1"
server_type = "SMALL-1C-2G"
...
}
As this information can be updated often, we cannot put a fixed list in this documentation.
You will learn how to get this information from the Elestio website.
Listing all optionsInstructions
When you create a service via the website, all three pieces of information (providers, datacentersdata centers, and server types) are listed on a single page. You can copy the configuration from there and paste it into your Terraform file.
Create a new service
Deploy my first service
3. Select one of the services (the choice does not matter)
Providers
vultr
hetzner
do
lightsail
linode
byovm
aws
Datacenters
fsn1
eu-central-1
Server types
SMALL-1C-2G
MICRO-1C-1G
Exemple
resource "elestio_vault" "my_vault" {
...
provider_name = "lightsail"
datacenter = "eu-west-1"
server_type = "MICRO-1C-1G"
...
}