84 lines
2.4 KiB
Python
84 lines
2.4 KiB
Python
from app.terraform.bridge import BridgeAutomation
|
|
|
|
|
|
class BridgeGandiAutomation(BridgeAutomation):
|
|
short_name = "bridge_gandi"
|
|
description = "Deploy Tor bridges on GandiCloud VPS"
|
|
provider = "gandi"
|
|
|
|
template_parameters = [
|
|
"gandi_openstack_user",
|
|
"gandi_openstack_password",
|
|
"gandi_openstack_tenant_name",
|
|
"ssh_public_key_path",
|
|
"ssh_private_key_path"
|
|
]
|
|
|
|
template = """
|
|
terraform {
|
|
{{ backend_config }}
|
|
required_providers {
|
|
openstack = {
|
|
source = "terraform-provider-openstack/openstack"
|
|
version = "~> 1.42.0"
|
|
}
|
|
}
|
|
}
|
|
|
|
provider "openstack" {
|
|
auth_url = "https://keystone.sd6.api.gandi.net:5000/v3"
|
|
user_domain_name = "public"
|
|
project_domain_name = "public"
|
|
user_name = "{{ gandi_openstack_user }}"
|
|
password = "{{ gandi_openstack_password }}"
|
|
tenant_name = "{{ gandi_openstack_tenant_name }}"
|
|
region = "FR-SD6"
|
|
}
|
|
|
|
locals {
|
|
public_ssh_key = file("{{ ssh_public_key_path }}")
|
|
private_ssh_key = file("{{ ssh_private_key_path }}")
|
|
}
|
|
|
|
{% for group in groups %}
|
|
module "label_{{ group.id }}" {
|
|
source = "cloudposse/label/null"
|
|
version = "0.25.0"
|
|
namespace = "{{ global_namespace }}"
|
|
tenant = "{{ group.group_name }}"
|
|
label_order = ["namespace", "tenant", "name", "attributes"]
|
|
}
|
|
{% endfor %}
|
|
|
|
{% for bridgeconf in bridgeconfs %}
|
|
{% for bridge in bridgeconf.bridges %}
|
|
{% if not bridge.destroyed %}
|
|
module "bridge_{{ bridge.id }}" {
|
|
source = "sr2c/tor-bridge/openstack"
|
|
version = "0.0.7"
|
|
context = module.label_{{ bridgeconf.group.id }}.context
|
|
name = "br"
|
|
attributes = ["{{ bridge.id }}"]
|
|
ssh_key = local.public_ssh_key
|
|
ssh_private_key = local.private_ssh_key
|
|
contact_info = "hi"
|
|
distribution_method = "{{ bridge.conf.method }}"
|
|
|
|
image_name = "Debian 11 Bullseye"
|
|
flavor_name = "V-R1"
|
|
external_network_name = "public"
|
|
require_block_device_creation = true
|
|
}
|
|
|
|
output "bridge_hashed_fingerprint_{{ bridge.id }}" {
|
|
value = module.bridge_{{ bridge.id }}.hashed_fingerprint
|
|
}
|
|
|
|
output "bridge_bridgeline_{{ bridge.id }}" {
|
|
value = module.bridge_{{ bridge.id }}.bridgeline
|
|
sensitive = true
|
|
}
|
|
{% endif %}
|
|
{% endfor %}
|
|
{% endfor %}
|
|
"""
|