Skip to content

Commit

Permalink
docs: be explicit about where inputs got moved (#36)
Browse files Browse the repository at this point in the history
Many users are having a hard time understanding that we moved a few inputs upstream,
this PR helps to clarify this misunderstanding by explicitly telling them where we moved
them to.
  • Loading branch information
afiune authored Mar 17, 2022
1 parent 19b12e6 commit ff13b48
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions variables.tf
Original file line number Diff line number Diff line change
Expand Up @@ -26,14 +26,14 @@ variable "application_owners" {

variable "subscription_ids" {
type = list(string)
description = "[DEPRECATED] List of subscriptions to grant read access to. By default the module will only use the primary subscription"
description = "[DEPRECATED] Use this input on upstream modules. (https://registry.terraform.io/modules/lacework/config/azure/latest?tab=inputs and https://registry.terraform.io/modules/lacework/activity-log/azure/latest?tab=inputs)"
default = []
}

variable "all_subscriptions" {
type = bool
default = false
description = "[DEPRECATED] If set to `true`, grant read access to ALL subscriptions within the selected Tenant (overrides `subscription_ids`)"
description = "[DEPRECATED] Use this input on upstream modules. (https://registry.terraform.io/modules/lacework/config/azure/latest?tab=inputs and https://registry.terraform.io/modules/lacework/activity-log/azure/latest?tab=inputs)"
}

variable "tenant_id" {
Expand All @@ -58,11 +58,11 @@ variable "key_vault_ids" {
variable "use_management_group" {
type = bool
default = false
description = "[DEPRECATED] If set to `true`, the AD Application will be set up to leverage a Management Group"
description = "[DEPRECATED] Use this input on upstream module: https://registry.terraform.io/modules/lacework/config/azure/latest?tab=inputs"
}

variable "management_group_id" {
type = string
default = ""
description = "[DEPRECATED] The ID of the Management Group"
description = "[DEPRECATED] Use this input on upstream module: https://registry.terraform.io/modules/lacework/config/azure/latest?tab=inputs"
}

0 comments on commit ff13b48

Please sign in to comment.