Skip to content

Instantly share code, notes, and snippets.

@publicarray
Created March 2, 2019 21:54
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save publicarray/546c2a02f0f9dc147b55db64955f5c6f to your computer and use it in GitHub Desktop.
Save publicarray/546c2a02f0f9dc147b55db64955f5c6f to your computer and use it in GitHub Desktop.
ovh terraform

Terraform on OHV

  1. Create a project
  2. Cloud->Servers->Project Name->Tecnical Management->Openstack Users
  3. Add user
  4. Download an Openstack Configuration File (v3)

Follow https://docs.ovh.com/gb/en/public-cloud/how-to-use-terraform/

But use the following provider, fill in the blanks from the configuration file you downloaded earlier:

provider "openstack" {
  auth_url    = "https://auth.cloud.ovh.net/v3"
  domain_name = "default"
  alias       = "ovh"
  tenant_id   = ""
  tenant_name = ""
  user_name   = ""
  password    = ""
  region      = ""
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment