Skip to content

Commit efd6b1e

Browse files
committed
Add output block to samples in readme.
1 parent 8a3d961 commit efd6b1e

File tree

7 files changed

+28
-0
lines changed

7 files changed

+28
-0
lines changed

modules/controlplane_rift/README.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -35,6 +35,10 @@ module "tecton" {
3535
tecton_control_plane_account_id = "987654321098" # Replace with Tecton's Control Plane Account ID
3636
cross_account_external_id = "your-tecton-external-id" # Replace with the External ID from Tecton
3737
}
38+
39+
output "tecton" {
40+
value = module.tecton
41+
}
3842
```
3943

4044
### Steps to Deploy (when using this module)

modules/controlplane_rift_with_emr/README.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -43,6 +43,10 @@ module "tecton" {
4343
# To enable EMR debugging for Tecton support (requires notebook_cluster_count = 1):
4444
# emr_debugging_count = 1
4545
}
46+
47+
output "tecton" {
48+
value = module.tecton
49+
}
4650
```
4751

4852
### Steps to Deploy

modules/databricks/README.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -47,6 +47,10 @@ module "tecton" {
4747
tecton_control_plane_account_id = "987654321098" # Tecton's Control Plane Account ID
4848
cross_account_external_id = "your-tecton-external-id" # External ID from Tecton
4949
}
50+
51+
output "tecton" {
52+
value = module.tecton
53+
}
5054
```
5155

5256
### Steps to Deploy (when using this module)

modules/dataplane_rift/README.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -44,6 +44,10 @@ module "tecton" {
4444
# Optional: For PrivateLink to Control Plane. Add _after_ deployment is complete and PrivateLink details are shared by Tecton
4545
# tecton_vpce_service_name = "com.amazonaws.vpce.us-west-2.vpce-svc-xxxxxxxxxxxxxxxxx"
4646
}
47+
48+
output "tecton" {
49+
value = module.tecton
50+
}
4751
```
4852

4953
### Steps to Deploy (when using this module)

modules/dataplane_rift_with_emr/README.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -46,6 +46,10 @@ module "tecton" {
4646
# To enable EMR debugging for Tecton support (requires notebook_cluster_count = 1):
4747
# emr_debugging_count = 1
4848
}
49+
50+
output "tecton" {
51+
value = module.tecton
52+
}
4953
```
5054

5155
### Steps to Deploy

modules/emr/README.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -44,6 +44,10 @@ module "tecton" {
4444
# Optional: Enable Redis
4545
# enable_redis = true
4646
}
47+
48+
output "tecton" {
49+
value = module.tecton
50+
}
4751
```
4852

4953
### Steps to Deploy

modules/standalone_rift/README.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -49,6 +49,10 @@ module "rift" {
4949
# use_network_firewall = true
5050
# additional_allowed_egress_domains = ["example.com", "*.example.org"]
5151
}
52+
53+
output "tecton" {
54+
value = module.rift
55+
}
5256
```
5357

5458
### Steps to Deploy

0 commit comments

Comments
 (0)