Skip to content

Commit 13951ca

Browse files
Felix Ziegermeshkodiak[bot]
authored andcommitted
docs: kraken credentials are used in metering
1 parent 58dfc81 commit 13951ca

File tree

5 files changed

+10
-10
lines changed

5 files changed

+10
-10
lines changed

TERRAFORM_DOCS.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -49,8 +49,8 @@
4949
| <a name="output_azure_ad_tenant_id"></a> [azure\_ad\_tenant\_id](#output\_azure\_ad\_tenant\_id) | The Azure AD tenant id. |
5050
| <a name="output_idp_lookup_service_principal"></a> [idp\_lookup\_service\_principal](#output\_idp\_lookup\_service\_principal) | IDP Lookup Service Principal. |
5151
| <a name="output_idp_lookup_service_principal_password"></a> [idp\_lookup\_service\_principal\_password](#output\_idp\_lookup\_service\_principal\_password) | Password for IDP Lookup Service Principal. |
52-
| <a name="output_kraken_service_principal"></a> [kraken\_service\_principal](#output\_kraken\_service\_principal) | Kraken Service Principal. |
53-
| <a name="output_kraken_service_principal_password"></a> [kraken\_service\_principal\_password](#output\_kraken\_service\_principal\_password) | Password for Kraken Service Principal. |
52+
| <a name="output_kraken_service_principal"></a> [kraken\_service\_principal](#output\_kraken\_service\_principal) | Metering Service Principal. |
53+
| <a name="output_kraken_service_principal_password"></a> [kraken\_service\_principal\_password](#output\_kraken\_service\_principal\_password) | Password for Metering Service Principal. |
5454
| <a name="output_replicator_service_principal"></a> [replicator\_service\_principal](#output\_replicator\_service\_principal) | Replicator Service Principal. |
5555
| <a name="output_replicator_service_principal_password"></a> [replicator\_service\_principal\_password](#output\_replicator\_service\_principal\_password) | Password for Replicator Service Principal. |
5656
| <a name="output_uami_blueprint_user_principal"></a> [uami\_blueprint\_user\_principal](#output\_uami\_blueprint\_user\_principal) | UAMI Blueprint Assignment Service Principal. |

examples/azure-integration-with-additional-resource-access/outputs.tf

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,12 +11,12 @@ output "replicator_service_principal_password" {
1111
}
1212

1313
output "kraken_service_principal" {
14-
description = "Kraken Service Principal."
14+
description = "Metering Service Principal."
1515
value = module.meshplatform.kraken_service_principal
1616
}
1717

1818
output "kraken_service_principal_password" {
19-
description = "Password for Kraken Service Principal."
19+
description = "Password for Metering Service Principal."
2020
value = module.meshplatform.kraken_service_principal_password
2121
sensitive = true
2222
}

examples/azure-integration-with-uami-blueprint-user-principal/outputs.tf

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,12 +10,12 @@ output "replicator_service_principal_password" {
1010
}
1111

1212
output "kraken_service_principal" {
13-
description = "Kraken Service Principal."
13+
description = "Metering Service Principal."
1414
value = module.meshplatform.kraken_service_principal
1515
}
1616

1717
output "kraken_service_principal_password" {
18-
description = "Password for Kraken Service Principal."
18+
description = "Password for Metering Service Principal."
1919
value = module.meshplatform.kraken_service_principal_password
2020
sensitive = true
2121
}

examples/basic-azure-integration/outputs.tf

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,12 +10,12 @@ output "replicator_service_principal_password" {
1010
}
1111

1212
output "kraken_service_principal" {
13-
description = "Kraken Service Principal."
13+
description = "Metering Service Principal."
1414
value = module.meshplatform.kraken_service_principal
1515
}
1616

1717
output "kraken_service_principal_password" {
18-
description = "Password for Kraken Service Principal."
18+
description = "Password for Metering Service Principal."
1919
value = module.meshplatform.kraken_service_principal_password
2020
sensitive = true
2121
}

outputs.tf

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -16,12 +16,12 @@ output "replicator_service_principal_password" {
1616
# }
1717

1818
output "kraken_service_principal" {
19-
description = "Kraken Service Principal."
19+
description = "Metering Service Principal."
2020
value = length(module.kraken_service_principal) > 0 ? module.kraken_service_principal[0].service_principal : null
2121
}
2222

2323
output "kraken_service_principal_password" {
24-
description = "Password for Kraken Service Principal."
24+
description = "Password for Metering Service Principal."
2525
value = length(module.kraken_service_principal) > 0 ? module.kraken_service_principal[0].service_principal_password : null
2626
sensitive = true
2727
}

0 commit comments

Comments
 (0)