Skip to content

Commit 81c77ec

Browse files
committed
DEV-14396 Fix example input.
1 parent a20b90d commit 81c77ec

File tree

2 files changed

+3
-9
lines changed

2 files changed

+3
-9
lines changed

examples/minimal/README.md

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,9 +11,8 @@ No provider.
1111

1212
| Name | Description | Type | Default | Required |
1313
|------|-------------|------|---------|:--------:|
14-
| spark\_service\_access\_sg\_ids | List of Spark service access security group IDs to allow ingress from | `list(string)` | n/a | yes |
14+
| ingress\_sg\_ids | List of security group IDs to allow ingress from (i.e. Spark cluster SG IDs, Tamr VM SG ID) | `list(string)` | n/a | yes |
1515
| subnet\_ids | List of at least 2 subnets in different AZs for DB subnet group | `list(string)` | n/a | yes |
16-
| tamr\_vm\_sg\_id | Security group ID of Tamr VM to allow ingress from | `string` | n/a | yes |
1716
| vpc\_id | VPC ID of network. | `string` | n/a | yes |
1817

1918
## Outputs

examples/minimal/variables.tf

Lines changed: 2 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -8,12 +8,7 @@ variable "subnet_ids" {
88
description = "List of at least 2 subnets in different AZs for DB subnet group"
99
}
1010

11-
variable "spark_service_access_sg_ids" {
11+
variable "ingress_sg_ids" {
12+
description = "List of security group IDs to allow ingress from (i.e. Spark cluster SG IDs, Tamr VM SG ID)"
1213
type = list(string)
13-
description = "List of Spark service access security group IDs to allow ingress from"
14-
}
15-
16-
variable "tamr_vm_sg_id" {
17-
type = string
18-
description = "Security group ID of Tamr VM to allow ingress from"
1914
}

0 commit comments

Comments
 (0)