Skip to main content

Install an OS via autoinstallation using Terraform

carefully

Automatic OS installation will delete data on all disks.
We recommend that you save your data or create a backup before installing the OS.

You can only install an OS via Terraform using automatic installation. Automatic OS installation is only available for pre-configured servers without upgrades. On a pre-configured server with an upgrade, you can manually install an OS from a custom image.

You can install an OS on the server that differs from the current one, or reinstall the current OS.

  1. Open the CLI.

  2. Make sure you are in the directory with the configuration file.

  3. Specify the required OS in the data source selectel_dedicated_os_v1:

    data "selectel_dedicated_os_v1" "server_os" {
    project_id = selectel_vpc_project_v2.project_1.id
    filter {
    name = "<os_image_name>"
    version_name = "<version_name>"
    configuration_id = data.selectel_dedicated_configuration_v1.server_config.configurations[0].id
    location_id = data.selectel_dedicated_location_v1.server_location.locations[0].id
    }
    }

    Specify:

  4. Check that the configuration file is free of errors:

    terraform validate
  5. Format the configuration file:

    terraform fmt
  6. Check the changes:

    terraform plan
  7. Apply the changes:

    terraform apply
  8. Confirm the creation — enter yes and press Enter. The changes will be displayed in the control panel.

  9. Wait for the OS installation to finish.