https://github.com/frozenfoxx/terraform-workbench-linode
Deploy a Linux workbench server in Linode
https://github.com/frozenfoxx/terraform-workbench-linode
docker linode linux
Last synced: about 2 months ago
JSON representation
Deploy a Linux workbench server in Linode
- Host: GitHub
- URL: https://github.com/frozenfoxx/terraform-workbench-linode
- Owner: frozenfoxx
- License: apache-2.0
- Created: 2020-12-30T22:58:01.000Z (over 5 years ago)
- Default Branch: main
- Last Pushed: 2021-01-11T02:41:37.000Z (over 5 years ago)
- Last Synced: 2025-08-20T00:50:19.269Z (10 months ago)
- Topics: docker, linode, linux
- Language: Shell
- Homepage:
- Size: 10.7 KB
- Stars: 2
- Watchers: 2
- Forks: 2
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# terraform-workbench-linode
Deploy a Linux workbench server in Linode.
# Requirements
* a Linode account.
* the `linode_sshkey` resource is handled elsewhere.
# Usage
To use this module, in your `main.tf` TerraForm code for a deployment insert the following:
``` code
module "workbench" {
source = "github.com/frozenfoxx/terraform-workbench-linode"
authorized_keys = ["${linode_sshkey.terraform.ssh_key}"]
fqdn = var.fqdn
image = var.image
name = "workbench"
private_key = chomp(file(var.private_ssh_key))
region = var.region
type = var.type
}
```