Skip to content

Commit

Permalink
fix typo in examples for service k8s (#151)
Browse files Browse the repository at this point in the history
  • Loading branch information
nareshkakubal authored Nov 22, 2023
1 parent d10aac6 commit 9b6dce0
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion docs/data-sources/policy_infra.md
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ resource "banyan_service_db" "example" {
policy = data.banyan_policy_infra.example.id
}
resource "banyan_service_infra_k8s" "example" {
resource "banyan_service_k8s" "example" {
name = "example-k8s"
description = "some k8s service description"
access_tier = "us-west1"
Expand Down
2 changes: 1 addition & 1 deletion docs/resources/service_k8s.md
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ Resource used for lifecycle management of kubernetes services. For more informat
## Example Usage

```terraform
resource "banyan_service_infra_k8s" "example" {
resource "banyan_service_k8s" "example" {
name = "example-k8s"
description = "some k8s service description"
access_tier = "us-west1"
Expand Down
2 changes: 1 addition & 1 deletion examples/data-sources/banyan_policy_infra/data-source.tf
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ resource "banyan_service_db" "example" {
policy = data.banyan_policy_infra.example.id
}

resource "banyan_service_infra_k8s" "example" {
resource "banyan_service_k8s" "example" {
name = "example-k8s"
description = "some k8s service description"
access_tier = "us-west1"
Expand Down
2 changes: 1 addition & 1 deletion examples/resources/banyan_service_k8s/resource.tf
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
resource "banyan_service_infra_k8s" "example" {
resource "banyan_service_k8s" "example" {
name = "example-k8s"
description = "some k8s service description"
access_tier = "us-west1"
Expand Down

0 comments on commit 9b6dce0

Please sign in to comment.