ediri-scaleway


Nameediri-scaleway JSON
Version 2.34.0 PyPI version JSON
download
home_pagehttps://www.pulumi.com
SummaryA Pulumi package for creating and managing Scaleway resources.
upload_time2023-12-08 13:18:51
maintainer
docs_urlNone
author
requires_python>=3.7
licenseApache-2.0
keywords pulumi scaleway category/utility
VCS
bugtrack_url
requirements No requirements were recorded.
Travis-CI No Travis.
coveralls test coverage No coveralls.
            # Scaleway Resource Provider

The Scaleway Resource Provider lets you manage [Scaleway](https://www.scaleway.com/en/) resources.

## Installing

This package is available for several languages/platforms:

### Node.js (JavaScript/TypeScript)


To use from JavaScript or TypeScript in Node.js, install using either `npm`:

```bash
npm install @ediri/scaleway
```

or `yarn`:

```bash
yarn add @ediri/scaleway
```

### Python

To use from Python, install using `pip`:

```bash
pip install ediri-scaleway
```

### Go

To use from Go, use `go get` to grab the latest version of the library:

```bash
go get github.com/dirien/pulumi-scaleway/sdk/v2
```

### .NET

To use from .NET, install using `dotnet add package`:

```bash
dotnet add package ediri.Scaleway
```

Replace the version string with your desired version.

## Setup

To provision resources with the Pulumi Scaleway provider, you need to have Scaleway credentials. Scaleway maintains
documentation on how to create API
keys [here](https://www.scaleway.com/en/docs/console/my-project/how-to/generate-api-key/)

### Set environment variables

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

```bash
export SCW_ACCESS_KEY=<SCW_ACCESS_KEY>
export SCW_SECRET_KEY=<SCW_SECRET_KEY>
```

```powershell
$env:SCW_ACCESS_KEY = "<SCW_ACCESS_KEY>"
$env:SCW_SECRET_KEY = "<SCW_SECRET_KEY>"
```

## Configuration Options

Use `pulumi config set scaleway:<option>` to set the following configuration options.

| Option            | Environment Variables         | Required/Optional | Description                                                                                                                                                                                        |
|-------------------|-------------------------------|-------------------|----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|
| `access_key`      | `SCW_ACCESS_KEY`              | Required          | [Scaleway access key](https://console.scaleway.com/project/credentials)                                                                                                                            |
| `secret_key`      | `SCW_SECRET_KEY`              | Required          | [Scaleway secret key](https://console.scaleway.com/project/credentials)                                                                                                                            |
| `project_id`      | `SCW_DEFAULT_PROJECT_ID`      | Required          | The [project ID](https://console.scaleway.com/project/settings) that will be used as default value for all resources.                                                                              |
| `organization_id` | `SCW_DEFAULT_ORGANIZATION_ID` | Optional          | The [organization ID](https://console.scaleway.com/organization/settings) that will be used as default value for all resources.                                                                    | 
| `region`          | `SCW_DEFAULT_REGION`          | Optional          | The [region](https://registry.terraform.io/providers/scaleway/scaleway/latest/guides/regions_and_zones#regions) that will be used as default value for all resources. (`fr-par` if none specified) |
| `zone`            | `SCW_DEFAULT_ZONE`            | Optional          | The [zone](https://registry.terraform.io/providers/scaleway/scaleway/latest/guides/regions_and_zones#zones) that will be used as default value for all resources. (`fr-par-1` if none specified)   |



            

Raw data

            {
    "_id": null,
    "home_page": "https://www.pulumi.com",
    "name": "ediri-scaleway",
    "maintainer": "",
    "docs_url": null,
    "requires_python": ">=3.7",
    "maintainer_email": "",
    "keywords": "pulumi scaleway category/utility",
    "author": "",
    "author_email": "",
    "download_url": "https://files.pythonhosted.org/packages/35/af/34f6a09858c9072fe0fa539a3159d69245f7eba57477b57254ed8cbbd258/ediri_scaleway-2.34.0.tar.gz",
    "platform": null,
    "description": "# Scaleway Resource Provider\n\nThe Scaleway Resource Provider lets you manage [Scaleway](https://www.scaleway.com/en/) resources.\n\n## Installing\n\nThis package is available for several languages/platforms:\n\n### Node.js (JavaScript/TypeScript)\n\n\nTo use from JavaScript or TypeScript in Node.js, install using either `npm`:\n\n```bash\nnpm install @ediri/scaleway\n```\n\nor `yarn`:\n\n```bash\nyarn add @ediri/scaleway\n```\n\n### Python\n\nTo use from Python, install using `pip`:\n\n```bash\npip install ediri-scaleway\n```\n\n### Go\n\nTo use from Go, use `go get` to grab the latest version of the library:\n\n```bash\ngo get github.com/dirien/pulumi-scaleway/sdk/v2\n```\n\n### .NET\n\nTo use from .NET, install using `dotnet add package`:\n\n```bash\ndotnet add package ediri.Scaleway\n```\n\nReplace the version string with your desired version.\n\n## Setup\n\nTo provision resources with the Pulumi Scaleway provider, you need to have Scaleway credentials. Scaleway maintains\ndocumentation on how to create API\nkeys [here](https://www.scaleway.com/en/docs/console/my-project/how-to/generate-api-key/)\n\n### Set environment variables\n\nOnce you have provisioned these credentials, you can set environment variables to provision resources in Scaleway:\n\n```bash\nexport SCW_ACCESS_KEY=<SCW_ACCESS_KEY>\nexport SCW_SECRET_KEY=<SCW_SECRET_KEY>\n```\n\n```powershell\n$env:SCW_ACCESS_KEY = \"<SCW_ACCESS_KEY>\"\n$env:SCW_SECRET_KEY = \"<SCW_SECRET_KEY>\"\n```\n\n## Configuration Options\n\nUse `pulumi config set scaleway:<option>` to set the following configuration options.\n\n| Option            | Environment Variables         | Required/Optional | Description                                                                                                                                                                                        |\n|-------------------|-------------------------------|-------------------|----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|\n| `access_key`      | `SCW_ACCESS_KEY`              | Required          | [Scaleway access key](https://console.scaleway.com/project/credentials)                                                                                                                            |\n| `secret_key`      | `SCW_SECRET_KEY`              | Required          | [Scaleway secret key](https://console.scaleway.com/project/credentials)                                                                                                                            |\n| `project_id`      | `SCW_DEFAULT_PROJECT_ID`      | Required          | The [project ID](https://console.scaleway.com/project/settings) that will be used as default value for all resources.                                                                              |\n| `organization_id` | `SCW_DEFAULT_ORGANIZATION_ID` | Optional          | The [organization ID](https://console.scaleway.com/organization/settings) that will be used as default value for all resources.                                                                    | \n| `region`          | `SCW_DEFAULT_REGION`          | Optional          | The [region](https://registry.terraform.io/providers/scaleway/scaleway/latest/guides/regions_and_zones#regions) that will be used as default value for all resources. (`fr-par` if none specified) |\n| `zone`            | `SCW_DEFAULT_ZONE`            | Optional          | The [zone](https://registry.terraform.io/providers/scaleway/scaleway/latest/guides/regions_and_zones#zones) that will be used as default value for all resources. (`fr-par-1` if none specified)   |\n\n\n",
    "bugtrack_url": null,
    "license": "Apache-2.0",
    "summary": "A Pulumi package for creating and managing Scaleway resources.",
    "version": "2.34.0",
    "project_urls": {
        "Homepage": "https://www.pulumi.com",
        "Repository": "https://github.com/dirien/pulumi-scaleway"
    },
    "split_keywords": [
        "pulumi",
        "scaleway",
        "category/utility"
    ],
    "urls": [
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "35af34f6a09858c9072fe0fa539a3159d69245f7eba57477b57254ed8cbbd258",
                "md5": "d85d727deccdf2b361b61ff2e9da4bb9",
                "sha256": "581265c93d12c98b1022c750911e10b7850f0163d451be03f7354d8d77a28806"
            },
            "downloads": -1,
            "filename": "ediri_scaleway-2.34.0.tar.gz",
            "has_sig": false,
            "md5_digest": "d85d727deccdf2b361b61ff2e9da4bb9",
            "packagetype": "sdist",
            "python_version": "source",
            "requires_python": ">=3.7",
            "size": 309015,
            "upload_time": "2023-12-08T13:18:51",
            "upload_time_iso_8601": "2023-12-08T13:18:51.082512Z",
            "url": "https://files.pythonhosted.org/packages/35/af/34f6a09858c9072fe0fa539a3159d69245f7eba57477b57254ed8cbbd258/ediri_scaleway-2.34.0.tar.gz",
            "yanked": false,
            "yanked_reason": null
        }
    ],
    "upload_time": "2023-12-08 13:18:51",
    "github": true,
    "gitlab": false,
    "bitbucket": false,
    "codeberg": false,
    "github_user": "dirien",
    "github_project": "pulumi-scaleway",
    "travis_ci": false,
    "coveralls": false,
    "github_actions": true,
    "lcname": "ediri-scaleway"
}
        
Elapsed time: 0.15156s