File tree Expand file tree Collapse file tree 2 files changed +34
-0
lines changed
internal/convert/testdata/adv2v2 Expand file tree Collapse file tree 2 files changed +34
-0
lines changed Original file line number Diff line number Diff line change 1+ resource "mongodbatlas_advanced_cluster" "this" {
2+ project_id = " <YOUR-PROJECT-ID>"
3+ name = " flex-cluster"
4+ cluster_type = " REPLICASET"
5+
6+ replication_specs {
7+ region_configs {
8+ provider_name = " FLEX"
9+ backing_provider_name = " AWS"
10+ region_name = " US_EAST_1"
11+ priority = 7
12+ }
13+ }
14+ }
Original file line number Diff line number Diff line change 1+ resource "mongodbatlas_advanced_cluster" "this" {
2+ project_id = " <YOUR-PROJECT-ID>"
3+ name = " flex-cluster"
4+ cluster_type = " REPLICASET"
5+
6+ replication_specs = [
7+ {
8+ region_configs = [
9+ {
10+ provider_name = " FLEX"
11+ backing_provider_name = " AWS"
12+ region_name = " US_EAST_1"
13+ priority = 7
14+ }
15+ ]
16+ }
17+ ]
18+
19+ # Updated by atlas-cli-plugin-terraform, please review the changes.
20+ }
You can’t perform that action at this time.
0 commit comments