Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
22 changes: 22 additions & 0 deletions .chloggen/feat_upcloud.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
# Use this changelog template to create an entry for release notes.
#
# If your change doesn't affect end users you should instead start
# your pull request title with [chore] or use the "Skip Changelog" label.

# One of 'breaking', 'deprecation', 'new_component', 'enhancement', 'bug_fix'
change_type: "enhancement"

# The name of the area of concern in the attributes-registry, (e.g. http, cloud, db)
component: "cloud"

# A brief description of the change. Surround your text with quotes ("") if it needs to start with a backtick (`).
note: "Add upcloud to cloud.provider and upcloud_compute to cloud.platform"

# Mandatory: One or more tracking issues related to the change. You can use the PR number here if no issue exists.
# The values here must be integers.
issues: [2786]

# (Optional) One or more lines of additional information to render under the primary note.
# These lines will be padded with 2 spaces and then inserted directly into the document.
# Use pipe (|) for multiline entries.
subtext:
2 changes: 2 additions & 0 deletions docs/registry/attributes/cloud.md
Original file line number Diff line number Diff line change
Expand Up @@ -76,6 +76,7 @@ The following well-known definitions MUST be used if you set this attribute and
| `tencent_cloud_cvm` | Tencent Cloud Cloud Virtual Machine (CVM) | ![Development](https://img.shields.io/badge/-development-blue) |
| `tencent_cloud_eks` | Tencent Cloud Elastic Kubernetes Service (EKS) | ![Development](https://img.shields.io/badge/-development-blue) |
| `tencent_cloud_scf` | Tencent Cloud Serverless Cloud Function (SCF) | ![Development](https://img.shields.io/badge/-development-blue) |
| `upcloud_compute` | Compute on Upcloud | ![Development](https://img.shields.io/badge/-development-blue) |

---

Expand All @@ -91,3 +92,4 @@ The following well-known definitions MUST be used if you set this attribute and
| `ibm_cloud` | IBM Cloud | ![Development](https://img.shields.io/badge/-development-blue) |
| `oracle_cloud` | Oracle Cloud Infrastructure (OCI) | ![Development](https://img.shields.io/badge/-development-blue) |
| `tencent_cloud` | Tencent Cloud | ![Development](https://img.shields.io/badge/-development-blue) |
| `upcloud` | Upcloud | ![Development](https://img.shields.io/badge/-development-blue) |
2 changes: 2 additions & 0 deletions docs/registry/entities/cloud.md
Original file line number Diff line number Diff line change
Expand Up @@ -87,6 +87,7 @@ The following well-known definitions MUST be used if you set this attribute and
| `tencent_cloud_cvm` | Tencent Cloud Cloud Virtual Machine (CVM) | ![Development](https://img.shields.io/badge/-development-blue) |
| `tencent_cloud_eks` | Tencent Cloud Elastic Kubernetes Service (EKS) | ![Development](https://img.shields.io/badge/-development-blue) |
| `tencent_cloud_scf` | Tencent Cloud Serverless Cloud Function (SCF) | ![Development](https://img.shields.io/badge/-development-blue) |
| `upcloud_compute` | Compute on Upcloud | ![Development](https://img.shields.io/badge/-development-blue) |

---

Expand All @@ -102,6 +103,7 @@ The following well-known definitions MUST be used if you set this attribute and
| `ibm_cloud` | IBM Cloud | ![Development](https://img.shields.io/badge/-development-blue) |
| `oracle_cloud` | Oracle Cloud Infrastructure (OCI) | ![Development](https://img.shields.io/badge/-development-blue) |
| `tencent_cloud` | Tencent Cloud | ![Development](https://img.shields.io/badge/-development-blue) |
| `upcloud` | Upcloud | ![Development](https://img.shields.io/badge/-development-blue) |


<!-- markdownlint-restore -->
2 changes: 2 additions & 0 deletions docs/resource/cloud.md
Original file line number Diff line number Diff line change
Expand Up @@ -83,6 +83,7 @@ The following well-known definitions MUST be used if you set this attribute and
| `tencent_cloud_cvm` | Tencent Cloud Cloud Virtual Machine (CVM) | ![Development](https://img.shields.io/badge/-development-blue) |
| `tencent_cloud_eks` | Tencent Cloud Elastic Kubernetes Service (EKS) | ![Development](https://img.shields.io/badge/-development-blue) |
| `tencent_cloud_scf` | Tencent Cloud Serverless Cloud Function (SCF) | ![Development](https://img.shields.io/badge/-development-blue) |
| `upcloud_compute` | Compute on Upcloud | ![Development](https://img.shields.io/badge/-development-blue) |

---

Expand All @@ -98,6 +99,7 @@ The following well-known definitions MUST be used if you set this attribute and
| `ibm_cloud` | IBM Cloud | ![Development](https://img.shields.io/badge/-development-blue) |
| `oracle_cloud` | Oracle Cloud Infrastructure (OCI) | ![Development](https://img.shields.io/badge/-development-blue) |
| `tencent_cloud` | Tencent Cloud | ![Development](https://img.shields.io/badge/-development-blue) |
| `upcloud` | Upcloud | ![Development](https://img.shields.io/badge/-development-blue) |

<!-- markdownlint-restore -->
<!-- prettier-ignore-end -->
Expand Down
8 changes: 8 additions & 0 deletions model/cloud/registry.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -40,6 +40,10 @@ groups:
value: 'tencent_cloud'
brief: 'Tencent Cloud'
stability: development
- id: 'upcloud'
value: 'upcloud'
brief: 'Upcloud'
stability: development
stability: development
brief: >
Name of the cloud provider.
Expand Down Expand Up @@ -283,6 +287,10 @@ groups:
value: 'tencent_cloud_scf'
brief: Tencent Cloud Serverless Cloud Function (SCF)
stability: development
- id: upcloud_compute
value: 'upcloud_compute'
brief: Compute on Upcloud
stability: development
stability: development
brief: >
The cloud platform in use.
Expand Down
Loading