@@ -77,7 +77,7 @@ variable "bds_instance_nodes_shape" {
7777}
7878
7979variable "bds_instance_worker_node_shape" {
80- default = " VM.Standard2.1 "
80+ default = " BM.Standard.E4.128 "
8181}
8282
8383variable "bds_instance_compute_only_worker_node_shape" {
@@ -96,13 +96,15 @@ variable "bds_instance_state" {
9696 default = " ACTIVE"
9797}
9898
99- variable "tag_namespace_description" {
100- default = " Just a test"
101- }
99+ # Uncomment this when running in home region (PHX)
100+ # variable "tag_namespace_description" {
101+ # default = "Just a test"
102+ # }
102103
103- variable "tag_namespace_name" {
104- default = " testexamples-tag-namespace"
105- }
104+ # Uncomment this when running in home region (PHX)
105+ # variable "tag_namespace_name" {
106+ # default = "testexamples-tag-namespace"
107+ # }
106108
107109provider "oci" {
108110 tenancy_ocid = var. tenancy_ocid
@@ -112,19 +114,21 @@ provider "oci" {
112114 region = var. region
113115}
114116
115- resource "oci_identity_tag_namespace" "tag-namespace1" {
116- # Required
117- compartment_id = var. tenancy_ocid
118- description = var. tag_namespace_description
119- name = var. tag_namespace_name
120- }
117+ # Uncomment this when running in home region (PHX)
118+ # resource "oci_identity_tag_namespace" "tag-namespace1" {
119+ # #Required
120+ # compartment_id = var.tenancy_ocid
121+ # description = var.tag_namespace_description
122+ # name = var.tag_namespace_name
123+ # }
121124
122- resource "oci_identity_tag" "tag1" {
123- # Required
124- description = " tf example tag"
125- name = " tf-example-tag"
126- tag_namespace_id = oci_identity_tag_namespace. tag-namespace1 . id
127- }
125+ # Uncomment this when running in home region (PHX)
126+ # resource "oci_identity_tag" "tag1" {
127+ # #Required
128+ # description = "tf example tag"
129+ # name = "tf-example-tag"
130+ # tag_namespace_id = oci_identity_tag_namespace.tag-namespace1.id
131+ # }
128132
129133resource "oci_core_vcn" "vcn_bds" {
130134 cidr_block = " 111.111.0.0/16"
@@ -203,9 +207,10 @@ resource "oci_bds_bds_instance" "test_bds_instance" {
203207 is_cloud_sql_configured = false
204208
205209 # Optional
206- defined_tags = {
207- " ${oci_identity_tag_namespace.tag-namespace1.name}.${oci_identity_tag.tag1.name}" = var.bds_instance_defined_tags_value
208- }
210+ # Uncomment this when running in home region (PHX)
211+ # defined_tags = {
212+ # "${oci_identity_tag_namespace.tag-namespace1.name}.${oci_identity_tag.tag1.name}" = var.bds_instance_defined_tags_value
213+ # }
209214 freeform_tags = var. bds_instance_freeform_tags
210215 network_config {
211216 # Optional
0 commit comments