fix(bridge): ssh_key -> ssh_public_key

This commit is contained in:
Iain Learmonth 2023-02-26 14:07:23 +00:00
parent 9253be892d
commit e17b564370
2 changed files with 2 additions and 2 deletions

View file

@ -63,7 +63,7 @@ class BridgeGandiAutomation(BridgeAutomation):
namespace = "{{ global_namespace }}" namespace = "{{ global_namespace }}"
name = "bridge" name = "bridge"
attributes = ["{{ bridge.id }}"] attributes = ["{{ bridge.id }}"]
ssh_key = local.public_ssh_key ssh_public_key = local.public_ssh_key
ssh_private_key = local.private_ssh_key ssh_private_key = local.private_ssh_key
contact_info = "did not write the code to populate yet" contact_info = "did not write the code to populate yet"
distribution_method = "{{ bridgeconf.method }}" distribution_method = "{{ bridgeconf.method }}"

View file

@ -91,7 +91,7 @@ class BridgeOvhAutomation(BridgeAutomation):
namespace = "{{ global_namespace }}" namespace = "{{ global_namespace }}"
name = "bridge" name = "bridge"
attributes = ["{{ bridge.id }}"] attributes = ["{{ bridge.id }}"]
ssh_key = local.public_ssh_key ssh_public_key = local.public_ssh_key
ssh_private_key = local.private_ssh_key ssh_private_key = local.private_ssh_key
contact_info = "hello from onionland" contact_info = "hello from onionland"
distribution_method = "{{ bridgeconf.method }}" distribution_method = "{{ bridgeconf.method }}"