Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/l-with/terraform-module-instance
https://github.com/l-with/terraform-module-instance
Last synced: 10 days ago
JSON representation
- Host: GitHub
- URL: https://github.com/l-with/terraform-module-instance
- Owner: l-with
- License: mit
- Created: 2023-09-08T15:13:29.000Z (about 1 year ago)
- Default Branch: main
- Last Pushed: 2024-04-20T13:45:42.000Z (7 months ago)
- Last Synced: 2024-04-20T14:59:04.257Z (7 months ago)
- Language: HCL
- Size: 60.5 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Terraform Modul instance
Terraform modules to provide instances on
- [contabo](https://registry.terraform.io/providers/contabo/contabo/latest): [terraform module instance contabo](modules/contabo/README.md)
- [digitalocean](https://registry.terraform.io/providers/digitalocean/digitalocean/latest): [terraform module instance digitalocean](modules/digitalocean/README.md)
- [hetzner](https://registry.terraform.io/providers/hetznercloud/hcloud/latest): [terraform module instance hetzner](modules/hetzner/README.md)
- [scaleway](https://registry.terraform.io/providers/scaleway/scaleway/latest): [terraform module instance scaleway](modules/scaleway/README.md)
- [vsphere](https://registry.terraform.io/providers/hashicorp/vsphere/latest): [terraform module instance vsphere](modules/vsphere/README.md)## Motivation
The motivation is to make switching between platforms as easy as possible.
## Differences
### ssh_key
- contabo
- for the [attribute ssh_keys of the resource contabo_instance](https://registry.terraform.io/providers/contabo/contabo/latest/docs/resources/contabo_instance#ssh_keys) the ids of ssh keys can be used
- unfortunately the [data source contabo_secret](https://registry.terraform.io/providers/contabo/contabo/latest/docs/data-sources/contabo_secret) uses the id of the ssh key
- the bypass is to retrieve all secrets via API and filter by name
- digitalocean
- for the [attribute ssh_keys of the resource digitalocean_droplet](https://registry.terraform.io/providers/digitalocean/digitalocean/latest/docs/resources/droplet#ssh_keys) the ids or fingerprints of ssh keys can be used
- the ids can be retrieved by [data source digitalocean_ssh_key](https://registry.terraform.io/providers/digitalocean/digitalocean/latest/docs/data-sources/ssh_key) by the name of the ssh key
- hetzner
- for the [attribute ssh_keys of the resource hcloud_server](https://registry.terraform.io/providers/hetznercloud/hcloud/latest/docs/resources/server#ssh_keys) the ids or names of ssh keys can be used
- scaleway
- there is no attribute ssh_keys for the resource [scaleway_instance_server](https://registry.terraform.io/providers/scaleway/scaleway/latest/docs/resources/instance_server)
- the ssh-keys of the organization and the project are used for the instance
- the only possibility is to create ssh-keys with the [resource scaleway_iam_ssh_key](https://registry.terraform.io/providers/scaleway/scaleway/latest/docs/resources/iam_ssh_key)
- vsphere
- for the [attribute vapp of the resource vsphere_virtual_machine](https://registry.terraform.io/providers/hashicorp/vsphere/latest/docs/resources/virtual_machine#vapp) in the sub-key properties the key public-keys can be used**Summary**
| provider | ssh-key specification possibility | resource ssh-key |
|--------------|-----------------------------------|-------------------------------------------------------------------------------------------------------------------------|
| contabo | name | [contabo_secret](https://registry.terraform.io/providers/contabo/contabo/latest/docs/resources/contabo_secret) |
| digitalocean | name | [digitalocean_ssh_key](https://registry.terraform.io/providers/digitalocean/digitalocean/latest/docs/resources/ssh_key) |
| hetzner | id or name | [hcloud_ssh_key](https://registry.terraform.io/providers/hetznercloud/hcloud/latest/docs/resources/ssh_key) |
| scaleway | public key | [scaleway_iam_ssh_key](https://registry.terraform.io/providers/scaleway/scaleway/latest/docs/resources/iam_ssh_key) |
| vsphere | public key | - |
### cloud-init