Skip to content

Commit 8f9ff4b

Browse files
committed
renamed vcn_dns_name t0 vcn_dns_label
Signed-off-by: Ali Mukadam <[email protected]>
1 parent 9ed994a commit 8f9ff4b

File tree

10 files changed

+10
-10
lines changed

10 files changed

+10
-10
lines changed

docs/configuration.adoc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -129,7 +129,7 @@ The networking parameters concern the VCN and the subnets network configuration
129129

130130
You can leave most of the default options. However, you may want to change the following 2 parameters:
131131

132-
* vcn_dns_name: this is the internal dns domain for resources created
132+
* vcn_dns_label: this is the internal dns domain for resources created
133133
* vcn_name: this is the name of the vcn that will be appended to the label prefix
134134

135135
****

docs/quickstart.adoc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -61,7 +61,7 @@ cp terraform.tfvars.example terraform.tfvars
6161
4. Optional parameters to override:
6262
* ssh_private_key_path
6363
* ssh_public_key_path
64-
* vcn_dns_name
64+
* vcn_dns_label
6565
* vcn_name
6666
* create_bastion
6767
* cluster_name

docs/terraformoptions.adoc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -140,7 +140,7 @@ Configuration Terraform Options:
140140
|
141141
|10.0.0.0/16
142142

143-
|vcn_dns_name
143+
|vcn_dns_label
144144
|The internal DNS domain for resources created and prepended to "oraclevcn.com" which is the VCN-internal domain name.
145145
|
146146
|oke

locals.tf

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ locals {
2525

2626
oci_base_vcn = {
2727
vcn_cidr = var.vcn_cidr
28-
vcn_dns_name = var.vcn_dns_name
28+
vcn_dns_label = var.vcn_dns_label
2929
vcn_name = var.vcn_name
3030
create_nat_gateway = var.create_nat_gateway
3131
nat_gateway_name = var.nat_gateway_name

modules/base/locals.tf

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ locals {
1010
create_service_gateway = var.oci_base_vcn.create_service_gateway
1111
service_gateway_name = var.oci_base_vcn.service_gateway_name
1212
vcn_cidr = var.oci_base_vcn.vcn_cidr
13-
vcn_dns_name = var.oci_base_vcn.vcn_dns_name
13+
vcn_dns_label = var.oci_base_vcn.vcn_dns_label
1414
vcn_name = var.oci_base_vcn.vcn_name
1515
}
1616

modules/base/variables.tf

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ variable "oci_base_general" {
3838
variable "oci_base_vcn" {
3939
type = object({
4040
vcn_cidr = string
41-
vcn_dns_name = string
41+
vcn_dns_label = string
4242
vcn_name = string
4343
create_nat_gateway = bool
4444
nat_gateway_name = string

modules/base/vcn/variables.tf

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ variable "oci_base_vcn" {
1010
create_service_gateway = bool
1111
service_gateway_name = string
1212
vcn_cidr = string
13-
vcn_dns_name = string
13+
vcn_dns_label = string
1414
vcn_name = string
1515
})
1616
}

modules/base/vcn/vcn.tf

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ resource "oci_core_vcn" "vcn" {
55
cidr_block = var.oci_base_vcn.vcn_cidr
66
compartment_id = var.oci_base_vcn.compartment_id
77
display_name = "${var.oci_base_vcn.label_prefix}-${var.oci_base_vcn.vcn_name}"
8-
dns_label = var.oci_base_vcn.vcn_dns_name
8+
dns_label = var.oci_base_vcn.vcn_dns_label
99
}
1010

1111
resource "oci_core_internet_gateway" "ig" {

terraform.tfvars.example

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@ subnets = {
4343

4444
vcn_cidr = "10.0.0.0/16"
4545

46-
vcn_dns_name = "oke"
46+
vcn_dns_label = "oke"
4747

4848
vcn_name = "oke vcn"
4949

variables.tf

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -73,7 +73,7 @@ variable "vcn_cidr" {
7373
default = "10.0.0.0/16"
7474
}
7575

76-
variable "vcn_dns_name" {
76+
variable "vcn_dns_label" {
7777
type = "string"
7878
default = "oke"
7979
}

0 commit comments

Comments
 (0)