pulumi-huaweicloud


Namepulumi-huaweicloud JSON
Version 0.0.8 PyPI version JSON
download
home_pagehttps://huaweicloud-pulumi-provider.readthedocs.io
SummaryA Pulumi package for creating and managing Huaweicloud cloud resources.
upload_time2023-07-28 02:50:31
maintainer
docs_urlNone
author
requires_python
licenseApache-2.0
keywords pulumi huaweicloud category/cloud
VCS
bugtrack_url
requirements No requirements were recorded.
Travis-CI No Travis.
coveralls test coverage No coveralls.
            # Huaweicloud Pulumi Provider

<!-- markdownlint-disable-next-line MD033 -->
<a href="https://www.huaweicloud.com/"><img width="450px" height="102px" src="https://console-static.huaweicloud.com/static/authui/20210202115135/public/custom/images/logo-en.svg"></a>

The Huaweicloud Pulumi Provider lets you manage [Huaweicloud](https://www.huaweicloud.com/) 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 @huaweicloudos/huaweicloud
```

or `yarn`:

```bash
yarn add @huaweicloudos/huaweicloud
```

### Python

To use from Python, install using `pip`:

```bash
pip install pulumi_huaweicloud
```

### Go

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

```bash
go get github.com/huaweicloud/pulumi-huaweicloud/sdk/go/...
```

## Configuration

The following configuration points are available for the `huaweicloud` provider:

- `huaweicloud:region` - (Optional) This is the Huawei Cloud region. It must be provided when using `static credentials`
  authentication, but it can also be sourced from the `HW_REGION_NAME` environment variables.

- `huaweicloud:access_key` - (Optional) The access key of the HuaweiCloud to use. If omitted, the `HW_ACCESS_KEY` environment
  variable is used.

- `huaweicloud:secret_key` - (Optional) The secret key of the HuaweiCloud to use. If omitted, the `HW_SECRET_KEY` environment
  variable is used.

- `huaweicloud:shared_config_file` - (Optional) The path to the shared config file. If omitted, the `HW_SHARED_CONFIG_FILE`
  environment variable is used.

- `huaweicloud:profile` - (Optional) The profile name as set in the shared config file. If omitted, the `HW_PROFILE` environment
  variable is used. Defaults to the `current` profile in the shared config file.

- `huaweicloud:assume_role` - (Optional) Configuration block for an assumed role. See below. Only one assume_role
  block may be in the configuration.

- `huaweicloud:project_name` - (Optional) The Name of the project to login with. If omitted, the `HW_PROJECT_NAME` environment
  variable or `region` is used.

- `huaweicloud:domain_name` - (Optional) The [Account name](https://support.huaweicloud.com/en-us/usermanual-iam/iam_01_0552.html)
  of IAM to scope to. If omitted, the `HW_DOMAIN_NAME` environment variable is used.

- `huaweicloud:security_token` - (Optional) The security token to authenticate with a
  [temporary security credential](https://support.huaweicloud.com/intl/en-us/iam_faq/iam_01_0620.html). If omitted,
  the `HW_SECURITY_TOKEN` environment variable is used.

- `huaweicloud:cloud` - (Optional) The endpoint of the cloud provider. If omitted, the
  `HW_CLOUD` environment variable is used. Defaults to `myhuaweicloud.com`.

- `huaweicloud:auth_url` - (Optional, Required before 1.14.0) The Identity authentication URL. If omitted, the
  `HW_AUTH_URL` environment variable is used. Defaults to `https://iam.{{region}}.{{cloud}}:443/v3`.

- `huaweicloud:insecure` - (Optional) Trust self-signed SSL certificates. If omitted, the
  `HW_INSECURE` environment variable is used.

- `huaweicloud:max_retries` - (Optional) This is the maximum number of times an API call is retried, in the case where
  requests are being throttled or experiencing transient failures. The delay between the subsequent API calls increases
  exponentially. The default value is `5`. If omitted, the `HW_MAX_RETRIES` environment variable is used.

- `huaweicloud:enterprise_project_id` - (Optional) Default Enterprise Project ID for supported resources.
  If omitted, the `HW_ENTERPRISE_PROJECT_ID` environment variable is used.

- `huaweicloud:endpoints` - (Optional) Configuration block in key/value pairs for customizing service endpoints. The following
  endpoints support to be customized: autoscaling, ecs, ims, vpc, nat, evs, obs, sfs, cce, rds, dds, iam. An example
  provider configuration:

  ```hcl
  provider "huaweicloud" {
    ...
    endpoints = {
      ecs = "https://ecs-customizing-endpoint.com"
    }
  }
  ```

The `assume_role` block supports:

- `agency_name` - (Required) The name of the agency for assume role.
  If omitted, the `HW_ASSUME_ROLE_AGENCY_NAME` environment variable is used.
- `domain_name` - (Required) The name of the agency domain for assume role.
  If omitted, the `HW_ASSUME_ROLE_DOMAIN_NAME` environment variable is used.

## Reference

For detailed reference documentation, please visit [the Huaweicloud Pulumi Provider](https://huaweicloud.github.io/pulumi-huaweicloud/).



            

Raw data

            {
    "_id": null,
    "home_page": "https://huaweicloud-pulumi-provider.readthedocs.io",
    "name": "pulumi-huaweicloud",
    "maintainer": "",
    "docs_url": null,
    "requires_python": "",
    "maintainer_email": "",
    "keywords": "pulumi huaweicloud category/cloud",
    "author": "",
    "author_email": "",
    "download_url": "https://files.pythonhosted.org/packages/90/d6/b7c8c10cd14753c770b74cb79d96613ede33ac4b6505255927682f502ec3/pulumi_huaweicloud-0.0.8.tar.gz",
    "platform": null,
    "description": "# Huaweicloud Pulumi Provider\n\n<!-- markdownlint-disable-next-line MD033 -->\n<a href=\"https://www.huaweicloud.com/\"><img width=\"450px\" height=\"102px\" src=\"https://console-static.huaweicloud.com/static/authui/20210202115135/public/custom/images/logo-en.svg\"></a>\n\nThe Huaweicloud Pulumi Provider lets you manage [Huaweicloud](https://www.huaweicloud.com/) resources.\n\n## Installing\n\nThis package is available for several languages/platforms:\n\n### Node.js (JavaScript/TypeScript)\n\nTo use from JavaScript or TypeScript in Node.js, install using either `npm`:\n\n```bash\nnpm install @huaweicloudos/huaweicloud\n```\n\nor `yarn`:\n\n```bash\nyarn add @huaweicloudos/huaweicloud\n```\n\n### Python\n\nTo use from Python, install using `pip`:\n\n```bash\npip install pulumi_huaweicloud\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/huaweicloud/pulumi-huaweicloud/sdk/go/...\n```\n\n## Configuration\n\nThe following configuration points are available for the `huaweicloud` provider:\n\n- `huaweicloud:region` - (Optional) This is the Huawei Cloud region. It must be provided when using `static credentials`\n  authentication, but it can also be sourced from the `HW_REGION_NAME` environment variables.\n\n- `huaweicloud:access_key` - (Optional) The access key of the HuaweiCloud to use. If omitted, the `HW_ACCESS_KEY` environment\n  variable is used.\n\n- `huaweicloud:secret_key` - (Optional) The secret key of the HuaweiCloud to use. If omitted, the `HW_SECRET_KEY` environment\n  variable is used.\n\n- `huaweicloud:shared_config_file` - (Optional) The path to the shared config file. If omitted, the `HW_SHARED_CONFIG_FILE`\n  environment variable is used.\n\n- `huaweicloud:profile` - (Optional) The profile name as set in the shared config file. If omitted, the `HW_PROFILE` environment\n  variable is used. Defaults to the `current` profile in the shared config file.\n\n- `huaweicloud:assume_role` - (Optional) Configuration block for an assumed role. See below. Only one assume_role\n  block may be in the configuration.\n\n- `huaweicloud:project_name` - (Optional) The Name of the project to login with. If omitted, the `HW_PROJECT_NAME` environment\n  variable or `region` is used.\n\n- `huaweicloud:domain_name` - (Optional) The [Account name](https://support.huaweicloud.com/en-us/usermanual-iam/iam_01_0552.html)\n  of IAM to scope to. If omitted, the `HW_DOMAIN_NAME` environment variable is used.\n\n- `huaweicloud:security_token` - (Optional) The security token to authenticate with a\n  [temporary security credential](https://support.huaweicloud.com/intl/en-us/iam_faq/iam_01_0620.html). If omitted,\n  the `HW_SECURITY_TOKEN` environment variable is used.\n\n- `huaweicloud:cloud` - (Optional) The endpoint of the cloud provider. If omitted, the\n  `HW_CLOUD` environment variable is used. Defaults to `myhuaweicloud.com`.\n\n- `huaweicloud:auth_url` - (Optional, Required before 1.14.0) The Identity authentication URL. If omitted, the\n  `HW_AUTH_URL` environment variable is used. Defaults to `https://iam.{{region}}.{{cloud}}:443/v3`.\n\n- `huaweicloud:insecure` - (Optional) Trust self-signed SSL certificates. If omitted, the\n  `HW_INSECURE` environment variable is used.\n\n- `huaweicloud:max_retries` - (Optional) This is the maximum number of times an API call is retried, in the case where\n  requests are being throttled or experiencing transient failures. The delay between the subsequent API calls increases\n  exponentially. The default value is `5`. If omitted, the `HW_MAX_RETRIES` environment variable is used.\n\n- `huaweicloud:enterprise_project_id` - (Optional) Default Enterprise Project ID for supported resources.\n  If omitted, the `HW_ENTERPRISE_PROJECT_ID` environment variable is used.\n\n- `huaweicloud:endpoints` - (Optional) Configuration block in key/value pairs for customizing service endpoints. The following\n  endpoints support to be customized: autoscaling, ecs, ims, vpc, nat, evs, obs, sfs, cce, rds, dds, iam. An example\n  provider configuration:\n\n  ```hcl\n  provider \"huaweicloud\" {\n    ...\n    endpoints = {\n      ecs = \"https://ecs-customizing-endpoint.com\"\n    }\n  }\n  ```\n\nThe `assume_role` block supports:\n\n- `agency_name` - (Required) The name of the agency for assume role.\n  If omitted, the `HW_ASSUME_ROLE_AGENCY_NAME` environment variable is used.\n- `domain_name` - (Required) The name of the agency domain for assume role.\n  If omitted, the `HW_ASSUME_ROLE_DOMAIN_NAME` environment variable is used.\n\n## Reference\n\nFor detailed reference documentation, please visit [the Huaweicloud Pulumi Provider](https://huaweicloud.github.io/pulumi-huaweicloud/).\n\n\n",
    "bugtrack_url": null,
    "license": "Apache-2.0",
    "summary": "A Pulumi package for creating and managing Huaweicloud cloud resources.",
    "version": "0.0.8",
    "project_urls": {
        "Homepage": "https://huaweicloud-pulumi-provider.readthedocs.io",
        "Repository": "https://github.com/huaweicloud/pulumi-huaweicloud"
    },
    "split_keywords": [
        "pulumi",
        "huaweicloud",
        "category/cloud"
    ],
    "urls": [
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "90d6b7c8c10cd14753c770b74cb79d96613ede33ac4b6505255927682f502ec3",
                "md5": "89b4e58574339848490ed2211d4d1174",
                "sha256": "7958da2608ddd1a69958174a6a9ab27891fe780ed32d1881644effa08cd463be"
            },
            "downloads": -1,
            "filename": "pulumi_huaweicloud-0.0.8.tar.gz",
            "has_sig": false,
            "md5_digest": "89b4e58574339848490ed2211d4d1174",
            "packagetype": "sdist",
            "python_version": "source",
            "requires_python": null,
            "size": 1134438,
            "upload_time": "2023-07-28T02:50:31",
            "upload_time_iso_8601": "2023-07-28T02:50:31.387467Z",
            "url": "https://files.pythonhosted.org/packages/90/d6/b7c8c10cd14753c770b74cb79d96613ede33ac4b6505255927682f502ec3/pulumi_huaweicloud-0.0.8.tar.gz",
            "yanked": false,
            "yanked_reason": null
        }
    ],
    "upload_time": "2023-07-28 02:50:31",
    "github": true,
    "gitlab": false,
    "bitbucket": false,
    "codeberg": false,
    "github_user": "huaweicloud",
    "github_project": "pulumi-huaweicloud",
    "travis_ci": false,
    "coveralls": false,
    "github_actions": true,
    "lcname": "pulumi-huaweicloud"
}
        
Elapsed time: 0.41345s