Skip to content

Commit

Permalink
Merge pull request #165 from terraform-providers/doc-fix
Browse files Browse the repository at this point in the history
Modify secret example per k8s docs
  • Loading branch information
paultyng authored May 24, 2018
2 parents 6fa34cc + ce3c515 commit 1d1bb6d
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions website/docs/r/secret.html.markdown
Original file line number Diff line number Diff line change
Expand Up @@ -42,10 +42,10 @@ resource "kubernetes_secret" "example" {
}
data {
".dockercfg" = "${file("${path.module}/.docker/config.json")}"
".dockerconfigjson" = "${file("${path.module}/.docker/config.json")}"
}
type = "kubernetes.io/dockercfg"
type = "kubernetes.io/dockerconfigjson"
}
```

Expand Down

0 comments on commit 1d1bb6d

Please sign in to comment.