21 lines
526 B
YAML
21 lines
526 B
YAML
---
|
|
- name: Deploy terraform
|
|
hosts: localhost
|
|
tasks:
|
|
- name: Deploy terraform
|
|
community.general.terraform:
|
|
project_path: terraform/
|
|
state: present
|
|
variables:
|
|
location: "nbg1"
|
|
network_zone: "eu-central"
|
|
server_count: 1
|
|
subnetwork_ip_range: "10.0.0.0/24"
|
|
lb_internal_ip: "10.0.0.100"
|
|
lb_external_ip: "167.235.105.161"
|
|
lb_service_id: 1399502
|
|
ssh_key: "rothe.pub"
|
|
register: tf_out
|
|
|
|
- debug: var=tf_out
|