ADFS blueprint fixes

This commit is contained in:
Miren Esnaola
2022-11-22 12:27:36 +01:00
parent ad7a0bb857
commit 67be16f94e
3 changed files with 8 additions and 4 deletions

View File

@@ -14,7 +14,7 @@
- name: Prepare
hosts: adfs
gather_facts: yes
gather_facts: no
vars_files:
- vars/vars.yaml
roles:

View File

@@ -28,8 +28,9 @@ module "project" {
? var.project_create.parent
: null
)
prefix = var.project_create == null ? null : var.prefix
name = var.project_id
project_create = var.project_create != null
prefix = var.project_create == null ? null : var.prefix
name = var.project_id
services = [
"compute.googleapis.com",
"dns.googleapis.com",

View File

@@ -31,7 +31,10 @@ variable "project_create" {
billing_account_id = string
parent = string
})
default = null
default = {
billing_account_id = "12345-12345-12345"
parent = "folders/123456789"
}
}
variable "project_id" {