Correct Kubernetes example

This commit is contained in:
Si Westcott 2018-12-12 13:32:30 +00:00 committed by GitHub
parent 0758bafb26
commit b3538543ef
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 2 additions and 1 deletions

View File

@ -5,7 +5,8 @@ resource "digitalocean_kubernetes_cluster" "foobar" {
tags = ["foo", "bar"]
node_pool {
size = "s-1vcpu-2gb3"
name = "foobar"
size = "s-1vcpu-2gb"
node_count = 1
tags = ["one", "two"] // Tags from cluster are automatically added to node pools
}