iam
This commit is contained in:
parent
b3c485a7bc
commit
1868091a7e
@ -41,8 +41,23 @@ module "compute" {
|
|||||||
}
|
}
|
||||||
|
|
||||||
module "iam" {
|
module "iam" {
|
||||||
source = "../../modules/iam"
|
source = "../../modules/iam"
|
||||||
|
|
||||||
# Variables d'entrée
|
|
||||||
project_id = var.project_id
|
project_id = var.project_id
|
||||||
|
}
|
||||||
|
|
||||||
|
data "google_client_openid_userinfo" "me" {
|
||||||
|
}
|
||||||
|
|
||||||
|
resource "local_file" "ansible_config" {
|
||||||
|
content = templatefile("${path.module}/../../templates/ansible.cfg.tpl",
|
||||||
|
{
|
||||||
|
remote_user = data.google_client_openid_userinfo.me.email
|
||||||
|
}
|
||||||
|
)
|
||||||
|
filename = "../../../ansible/ansible.cfg"
|
||||||
|
}
|
||||||
|
|
||||||
|
resource "local_file" "service_account" {
|
||||||
|
content = base64decode(module.iam.service_account_key)
|
||||||
|
filename = "../../../ansible/service_account.json"
|
||||||
}
|
}
|
8
terraform/templates/ansible.cfg.tpl
Normal file
8
terraform/templates/ansible.cfg.tpl
Normal file
@ -0,0 +1,8 @@
|
|||||||
|
[defaults]
|
||||||
|
host_key_checking = False
|
||||||
|
inventory = gcp_compute.yml
|
||||||
|
interpreter_python = auto_silent
|
||||||
|
remote_user = ${replace(replace(remote_user, ".", "_"), "@", "_")}
|
||||||
|
|
||||||
|
[inventory]
|
||||||
|
enable_plugins = gcp_compute, auto, host_list, yaml, ini, toml, script
|
Loading…
Reference in New Issue
Block a user