Remove variables

This commit is contained in:
lcaggio 2023-02-20 00:45:40 +01:00
parent c8f25512eb
commit db6a4f9ac7
2 changed files with 4 additions and 12 deletions

View File

@ -213,9 +213,11 @@ While this blueprint can be used as a standalone deployment, it can also be call
```hcl
module "data-platform" {
source = "./fabric/blueprints/data-solutions/data-platform-foundations"
billing_account_id = var.billing_account_id
folder_id = var.folder_id
organization_domain = "example.com"
project_config = {
billing_account_id = var.billing_account_id
parent = "folders/12345678"
}
prefix = "myprefix"
}

View File

@ -14,11 +14,6 @@
# tfdoc:file:description Terraform Variables.
variable "billing_account_id" {
description = "Billing account id."
type = string
}
variable "composer_config" {
description = "Cloud Composer config."
type = object({
@ -119,11 +114,6 @@ variable "data_force_destroy" {
default = false
}
variable "folder_id" {
description = "Folder to be used for the networking resources in folders/nnnn format."
type = string
}
variable "groups" {
description = "User groups."
type = map(string)