Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
34 changes: 17 additions & 17 deletions connector/terraform/README.md

Large diffs are not rendered by default.

2 changes: 2 additions & 0 deletions connector/terraform/examples/advanced/main.tf
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,8 @@ module "elastio_connectors" {
elastio_tenant = var.elastio_tenant
elastio_pat = var.elastio_pat

network_configuration = "Auto"

elastio_cloud_connectors = [
{
region = "us-east-1"
Expand Down
2 changes: 2 additions & 0 deletions connector/terraform/examples/basic/main.tf
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,8 @@ module "elastio_connectors" {
elastio_tenant = var.elastio_tenant
elastio_pat = var.elastio_pat

network_configuration = "Auto"

elastio_cloud_connectors = [
{
region = "us-east-1"
Expand Down
32 changes: 16 additions & 16 deletions connector/terraform/modules/account/README.md

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion connector/terraform/modules/account/variables.tf
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,7 @@ variable "network_configuration" {
DESCR

type = string
default = "Auto"
default = "Manual"
nullable = false

validation {
Expand Down
2 changes: 1 addition & 1 deletion connector/terraform/variables.tf
Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,7 @@ variable "network_configuration" {
DESCR

type = string
default = "Auto"
default = "Manual"
nullable = false

validation {
Expand Down