1. Packages
  2. OVH
  3. Installation & Configuration
OVHCloud v0.43.1 published on Tuesday, Apr 23, 2024 by OVHcloud

OVH: Installation & Configuration

ovh logo
OVHCloud v0.43.1 published on Tuesday, Apr 23, 2024 by OVHcloud

    Information

    Note that the lbrlabs Pulumi OVH provider is replaced by this official one.

    Installation

    The Pulumi OVH provider is available as a package in all Pulumi languages:

    Provider Binary

    The OVH provider binary is a third party binary. It can be installed using the pulumi plugin command.

    pulumi plugin install resource ovh vX.Y.Z --server github://api.github.com/ovh/pulumi-ovh
    

    Replace the version string with your desired version.

    Setup

    To provision resources with the Pulumi OVH provider, you need to have OVH credentials. Your OVH credentials are never sent to pulumi.com. Pulumi uses the OVH API and the credentials in your environment to authenticate requests from your computer to OVH.

    Get your credentials

    The “OVH provider” needs to be configured with a set of credentials, which can be set using Pulumi stack configuration or environment variables:

    • ovh:endpoint (environment variable: OVH_ENDPOINT)
    • ovh:applicationKey (environment variable: OVH_APPLICATION_KEY)
    • ovh:applicationSecret (secret) (environment variable: OVH_APPLICATION_SECRET)
    • ovh:consumerKey (environment variable: OVH_CONSUMER_KEY)

    Why?

    Because, behind the scenes, the provider is doing requests to OVHcloud APIs.

    In order to retrieve this necessary information, please follow First steps with the OVHcloud APIs tutorial.

    Concretely, you have to generate these credentials via the OVH token generation page with the following rights:

    • GET /
    • POST /*
    • PUT /*
    • DELETE /*

    When you have successfully generated your OVH tokens, please keep them. You’ll have to define them in the coming minutes ;-).

    Set environment variables

    Once you have provisioned these credentials, you can set environment variables to provision resources in Grafana:

    $ export OVH_ENDPOINT="<the Ovh endpoint, for example ovh-eu>"
    $ export OVH_APPLICATION_KEY="<the Ovh application key>"
    $ export OVH_APPLICATION_SECRET="<the Ovh application secret>"
    $ export OVH_CONSUMER_KEY="<the Ovh consumer key>"
    
    $ export OVH_ENDPOINT="<the Ovh endpoint, for example ovh-eu>"
    $ export OVH_APPLICATION_KEY="<the Ovh application key>"
    $ export OVH_APPLICATION_SECRET="<the Ovh application secret>"
    $ export OVH_CONSUMER_KEY="<the Ovh consumer key>"
    
    > $env:OVH_ENDPOINT = "<the Ovh endpoint, for example ovh-eu>"
    > $env:OVH_APPLICATION_KEY = "<the Ovh application key>"
    > $env:OVH_APPLICATION_SECRET = "<the Ovh application secret>"
    > $env:OVH_CONSUMER_KEY = "<the Ovh consumer key>"
    
    ovh logo
    OVHCloud v0.43.1 published on Tuesday, Apr 23, 2024 by OVHcloud