Skip to content

Commit 955fbf6

Browse files
authored
Switch the default network config to Manual (#118)
1 parent 76025e4 commit 955fbf6

File tree

6 files changed

+39
-35
lines changed

6 files changed

+39
-35
lines changed

connector/terraform/README.md

Lines changed: 17 additions & 17 deletions
Large diffs are not rendered by default.

connector/terraform/examples/advanced/main.tf

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,8 @@ module "elastio_connectors" {
44
elastio_tenant = var.elastio_tenant
55
elastio_pat = var.elastio_pat
66

7+
network_configuration = "Auto"
8+
79
elastio_cloud_connectors = [
810
{
911
region = "us-east-1"

connector/terraform/examples/basic/main.tf

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,8 @@ module "elastio_connectors" {
44
elastio_tenant = var.elastio_tenant
55
elastio_pat = var.elastio_pat
66

7+
network_configuration = "Auto"
8+
79
elastio_cloud_connectors = [
810
{
911
region = "us-east-1"

connector/terraform/modules/account/README.md

Lines changed: 16 additions & 16 deletions
Large diffs are not rendered by default.

connector/terraform/modules/account/variables.tf

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -54,7 +54,7 @@ variable "network_configuration" {
5454
DESCR
5555

5656
type = string
57-
default = "Auto"
57+
default = "Manual"
5858
nullable = false
5959

6060
validation {

connector/terraform/variables.tf

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -59,7 +59,7 @@ variable "network_configuration" {
5959
DESCR
6060

6161
type = string
62-
default = "Auto"
62+
default = "Manual"
6363
nullable = false
6464

6565
validation {

0 commit comments

Comments
 (0)