Skip to content

Commit 77a6150

Browse files
Jordan-Williams2Jordan-Williams2
authored andcommitted
feat: scc workload protection DA
1 parent d26dc88 commit 77a6150

File tree

1 file changed

+6
-6
lines changed

1 file changed

+6
-6
lines changed

solutions/standard/outputs.tf

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -15,32 +15,32 @@ output "resource_group_id" {
1515

1616
output "scc_workload_protection_id" {
1717
description = "SCC Workload Protection instance ID"
18-
value = module.scc_wp[0].id
18+
value = module.scc_wp.id
1919
}
2020

2121
output "scc_workload_protection_crn" {
2222
description = "SCC Workload Protection instance CRN"
23-
value = module.scc_wp[0].crn
23+
value = module.scc_wp.crn
2424
}
2525

2626
output "scc_workload_protection_name" {
2727
description = "SCC Workload Protection instance name"
28-
value = module.scc_wp[0].name
28+
value = module.scc_wp.name
2929
}
3030

3131
output "scc_workload_protection_ingestion_endpoint" {
3232
description = "SCC Workload Protection instance ingestion endpoint"
33-
value = module.scc_wp[0].name
33+
value = module.scc_wp.name
3434
}
3535

3636
output "scc_workload_protection_api_endpoint" {
3737
description = "SCC Workload Protection API endpoint"
38-
value = module.scc_wp[0].api_endpoint
38+
value = module.scc_wp.api_endpoint
3939
sensitive = true
4040
}
4141

4242
output "scc_workload_protection_access_key" {
4343
description = "SCC Workload Protection access key"
44-
value = module.scc_wp[0].access_key
44+
value = module.scc_wp.access_key
4545
sensitive = true
4646
}

0 commit comments

Comments
 (0)