You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
1234567891011121314 |
- variable "hcloud_token" {
- type = "string"
- default = "arObmfdkjldfksjfKJHKLSJDHFLKJHSDKFJHfjdhsfjkdhfLJKHKJHDLf453444"
- }
-
- provider "hcloud" {
- token = "${var.hcloud_token}"
- }
-
- resource "hcloud_ssh_key" "masterkey" {
- name = "Master Key"
- public_key = "${file("secrets/master.key.pub")}"
- }
|