You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
12 lines
361 B
YAML
12 lines
361 B
YAML
|
|
- hosts: localhost
|
|
tasks:
|
|
- command: date +%Y%m%d-%H%M%S
|
|
register: out
|
|
|
|
- set_fact:
|
|
instance_name: "controller-{{out.stdout}}"
|
|
|
|
- command: >
|
|
gcloud compute instances create {{instance_name}} --can-ip-forward --machine-type=n1-standard-8 --preemptible --scopes=compute-ro --image-project=debian-cloud --image-family=debian-9
|