Skip to content

Commit 567c700

Browse files
Felix Ziegermeshkodiak[bot]
authored andcommitted
docs: variable descriptions use metering instead of kraken
1 parent 13951ca commit 567c700

File tree

4 files changed

+26
-3
lines changed

4 files changed

+26
-3
lines changed

TERRAFORM_DOCS.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@
3636
| <a name="input_additional_permissions"></a> [additional\_permissions](#input\_additional\_permissions) | Additional Subscription-Level Permissions the Service Principal needs. | `list(string)` | `[]` | no |
3737
| <a name="input_additional_required_resource_accesses"></a> [additional\_required\_resource\_accesses](#input\_additional\_required\_resource\_accesses) | Additional AAD-Level Resource Accesses the replicator Service Principal needs. | `list(object({ resource_app_id = string, resource_accesses = list(object({ id = string, type = string })) }))` | `[]` | no |
3838
| <a name="input_idplookup_enabled"></a> [idplookup\_enabled](#input\_idplookup\_enabled) | Whether to create idplookup Service Principal or not. | `bool` | `true` | no |
39-
| <a name="input_kraken_enabled"></a> [kraken\_enabled](#input\_kraken\_enabled) | Whether to create kraken Service Principal or not. | `bool` | `true` | no |
39+
| <a name="input_kraken_enabled"></a> [kraken\_enabled](#input\_kraken\_enabled) | Whether to create Metering Service Principal or not. | `bool` | `true` | no |
4040
| <a name="input_mgmt_group_name"></a> [mgmt\_group\_name](#input\_mgmt\_group\_name) | The name or UUID of the Management Group. | `string` | n/a | yes |
4141
| <a name="input_replicator_enabled"></a> [replicator\_enabled](#input\_replicator\_enabled) | Whether to create replicator Service Principal or not. | `bool` | `true` | no |
4242
| <a name="input_service_principal_name_suffix"></a> [service\_principal\_name\_suffix](#input\_service\_principal\_name\_suffix) | Service principal name suffix. Make sure this is unique. | `string` | n/a | yes |

modules/meshcloud-kraken-service-principal/module.tf

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -53,7 +53,7 @@ resource "azurerm_role_assignment" "meshcloud_kraken" {
5353
resource "azurerm_role_definition" "meshcloud_kraken_cloud_inventory_role" {
5454
name = "kraken.${var.service_principal_name_suffix}_cloud_inventory_role"
5555
scope = var.scope
56-
description = "Permissions required by meshcloud in order to collect information about resources in the kraken module"
56+
description = "Permissions required by meshcloud in order to collect information about resources in the metering module"
5757

5858
permissions {
5959
actions = [
Lines changed: 23 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,23 @@
1+
## Requirements
2+
3+
No requirements.
4+
5+
## Providers
6+
7+
No providers.
8+
9+
## Modules
10+
11+
No modules.
12+
13+
## Resources
14+
15+
No resources.
16+
17+
## Inputs
18+
19+
No inputs.
20+
21+
## Outputs
22+
23+
No outputs.

variables.tf

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ variable "replicator_enabled" {
2222
variable "kraken_enabled" {
2323
type = bool
2424
default = true
25-
description = "Whether to create kraken Service Principal or not."
25+
description = "Whether to create Metering Service Principal or not."
2626
}
2727

2828
variable "idplookup_enabled" {

0 commit comments

Comments
 (0)