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 serviceDeploy my first service3. Select one of the services (the choice does not matter)
Providers
vultrhetznerdolightsaillinodebyovmawsDatacenters
fsn1eu-central-1Server types
SMALL-1C-2GMICRO-1C-1GExemple
resource "elestio_vault" "my_vault" {
...
provider_name = "lightsail"
datacenter = "eu-west-1"
server_type = "MICRO-1C-1G"
...
}















