Skip to content

Commit

Permalink
fix to example
Browse files Browse the repository at this point in the history
  • Loading branch information
cveticm committed Nov 8, 2024
1 parent 2ae358d commit e641428
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/flex_cluster.md
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ resource "mongodbatlas_flex_cluster" "example-cluster" {
data "mongodbatlas_flex_cluster" "example-cluster" {
project_id = var.project_id
name = mongodbatlas_flex_cluster.flex_cluster.name
name = mongodbatlas_flex_cluster.example-cluster.name
}
data "mongodbatlas_flex_clusters" "example-clusters" {
Expand Down
2 changes: 1 addition & 1 deletion docs/data-sources/flex_clusters.md
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ resource "mongodbatlas_flex_cluster" "example-cluster" {
data "mongodbatlas_flex_cluster" "example-cluster" {
project_id = var.project_id
name = mongodbatlas_flex_cluster.flex_cluster.name
name = mongodbatlas_flex_cluster.example-cluster.name
}
data "mongodbatlas_flex_clusters" "example-clusters" {
Expand Down
2 changes: 1 addition & 1 deletion docs/resources/flex_cluster.md
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ resource "mongodbatlas_flex_cluster" "example-cluster" {
data "mongodbatlas_flex_cluster" "example-cluster" {
project_id = var.project_id
name = mongodbatlas_flex_cluster.flex_cluster.name
name = mongodbatlas_flex_cluster.example-cluster.name
}
data "mongodbatlas_flex_clusters" "example-clusters" {
Expand Down
2 changes: 1 addition & 1 deletion examples/mongodbatlas_flex_cluster/main.tf
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ resource "mongodbatlas_flex_cluster" "example-cluster" {

data "mongodbatlas_flex_cluster" "example-cluster" {
project_id = var.project_id
name = mongodbatlas_flex_cluster.flex_cluster.name
name = mongodbatlas_flex_cluster.example-cluster.name
}

data "mongodbatlas_flex_clusters" "example-clusters" {
Expand Down

0 comments on commit e641428

Please sign in to comment.