Skip to content
This repository was archived by the owner on May 13, 2024. It is now read-only.

Commit 64bc538

Browse files
committed
Updated release 1.2
1 parent 433a12f commit 64bc538

File tree

2 files changed

+17
-17
lines changed

2 files changed

+17
-17
lines changed

tags.tf

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -6,25 +6,25 @@ resource "random_id" "tag" {
66
}
77

88
resource "oci_identity_tag_namespace" "ArchitectureCenterTagNamespace" {
9-
provider = oci.homeregion
9+
provider = oci.homeregion
1010
compartment_id = var.compartment_ocid
11-
description = "ArchitectureCenterTagNamespace"
12-
name = "ArchitectureCenter\\ha-web-app-${random_id.tag.hex}"
11+
description = "ArchitectureCenterTagNamespace"
12+
name = "ArchitectureCenter\\ha-web-app-${random_id.tag.hex}"
1313

1414
provisioner "local-exec" {
1515
command = "sleep 10"
1616
}
1717
}
1818

1919
resource "oci_identity_tag" "ArchitectureCenterTag" {
20-
provider = oci.homeregion
21-
description = "ArchitectureCenterTag"
22-
name = "release"
20+
provider = oci.homeregion
21+
description = "ArchitectureCenterTag"
22+
name = "release"
2323
tag_namespace_id = oci_identity_tag_namespace.ArchitectureCenterTagNamespace.id
2424

2525
validator {
2626
validator_type = "ENUM"
27-
values = ["release", "1.1"]
27+
values = ["release", "1.2"]
2828
}
2929

3030
provisioner "local-exec" {

variables.tf

Lines changed: 10 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ variable "availability_domain_name" {
3232

3333
variable "release" {
3434
description = "Reference Architecture Release (OCI Architecture Center)"
35-
default = "1.1"
35+
default = "1.2"
3636
}
3737

3838
variable "ssh_public_key" {
@@ -66,15 +66,15 @@ variable "linux_os_version" {
6666
}
6767

6868
variable "instance_shape" {
69-
default = "VM.Standard.E3.Flex"
69+
default = "VM.Standard.E3.Flex"
7070
}
7171

7272
variable "instance_flex_shape_ocpus" {
73-
default = 1
73+
default = 1
7474
}
7575

7676
variable "instance_flex_shape_memory" {
77-
default = 10
77+
default = 10
7878
}
7979

8080
variable "ATP_private_endpoint" {
@@ -123,8 +123,8 @@ variable "ATP_private_endpoint_label" {
123123
default = "ATPPrivateEndpoint"
124124
}
125125

126-
variable "ATP_data_guard_enabled" {
127-
default = false
126+
variable "ATP_data_guard_enabled" {
127+
default = false
128128
}
129129

130130
locals {
@@ -135,8 +135,8 @@ locals {
135135
]
136136
# Checks if is using Flexible Compute Shapes
137137
is_flexible_node_shape = contains(local.compute_flexible_shapes, var.instance_shape)
138-
139-
availability_domain_name = var.availability_domain_name == "" ? lookup(data.oci_identity_availability_domains.ads.availability_domains[var.availability_domain],"name") : var.availability_domain_name
140-
private_key = var.private_key == "" ? file(var.private_key_path) : var.private_key
141-
ssh_public_key = var.ssh_public_key == "" ? file(var.ssh_public_key_path) : var.ssh_public_key
138+
139+
availability_domain_name = var.availability_domain_name == "" ? lookup(data.oci_identity_availability_domains.ads.availability_domains[var.availability_domain], "name") : var.availability_domain_name
140+
private_key = var.private_key == "" ? file(var.private_key_path) : var.private_key
141+
ssh_public_key = var.ssh_public_key == "" ? file(var.ssh_public_key_path) : var.ssh_public_key
142142
}

0 commit comments

Comments
 (0)