mirror of
https://github.com/trailofbits/algo.git
synced 2025-08-14 08:43:01 +02:00
Add missing roles to ansible-lint
This commit is contained in:
parent
5c0293372a
commit
c4dac84a3f
4 changed files with 3 additions and 3 deletions
|
@ -64,7 +64,7 @@ matrix:
|
||||||
- pip install ansible-lint
|
- pip install ansible-lint
|
||||||
- shellcheck algo install.sh
|
- shellcheck algo install.sh
|
||||||
- ansible-playbook main.yml --syntax-check
|
- ansible-playbook main.yml --syntax-check
|
||||||
- ansible-lint -v *.yml
|
- ansible-lint -v roles/*/*/*.yml playbooks/*.yml *.yml
|
||||||
|
|
||||||
- stage: Deploy
|
- stage: Deploy
|
||||||
name: local deployment from docker
|
name: local deployment from docker
|
||||||
|
|
|
@ -16,7 +16,7 @@
|
||||||
azure_rm_deployment:
|
azure_rm_deployment:
|
||||||
state: present
|
state: present
|
||||||
deployment_name: "{{ algo_server_name }}"
|
deployment_name: "{{ algo_server_name }}"
|
||||||
template: "{{ lookup('file', 'deployment.json') }}"
|
template: "{{ lookup('file', role_path + '/files/deployment.json') }}"
|
||||||
secret: "{{ secret }}"
|
secret: "{{ secret }}"
|
||||||
tenant: "{{ tenant }}"
|
tenant: "{{ tenant }}"
|
||||||
client_id: "{{ client_id }}"
|
client_id: "{{ client_id }}"
|
||||||
|
|
|
@ -6,7 +6,7 @@
|
||||||
stack_name: "{{ stack_name }}"
|
stack_name: "{{ stack_name }}"
|
||||||
state: "present"
|
state: "present"
|
||||||
region: "{{ algo_region }}"
|
region: "{{ algo_region }}"
|
||||||
template: roles/cloud-ec2/files/stack.yml
|
template: roles/cloud-ec2/files/stack.yaml
|
||||||
template_parameters:
|
template_parameters:
|
||||||
InstanceTypeParameter: "{{ cloud_providers.ec2.size }}"
|
InstanceTypeParameter: "{{ cloud_providers.ec2.size }}"
|
||||||
PublicSSHKeyParameter: "{{ lookup('file', SSH_keys.public) }}"
|
PublicSSHKeyParameter: "{{ lookup('file', SSH_keys.public) }}"
|
||||||
|
|
Loading…
Add table
Reference in a new issue