Merge pull request #1000 from apichick/adfs-fixes

ADFS blueprint fixes
This commit is contained in:
apichick 2022-11-28 13:43:33 +01:00 committed by GitHub
commit e39ae69fd5
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
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

@ -24,8 +24,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" {