Implement the tor_family_identity resource

This commit is contained in:
Abel Luck 2025-06-06 10:51:40 +02:00
parent 0951242b32
commit ec57a47ba2
22 changed files with 558 additions and 67 deletions

14
e2e-tests/setup.sh Executable file
View file

@ -0,0 +1,14 @@
#!/usr/bin/env bash
set -e
rm -f ./.terraform.lock.hcl
mkdir -p providers/registry.terraform.io/guardianproject/tor/99.0.0/linux_amd64
mkdir -p providers/registry.opentofu.org/guardianproject/tor/99.0.0/linux_amd64
cp ../../terraform-provider-tor providers/registry.terraform.io/guardianproject/tor/99.0.0/linux_amd64
cp ../../terraform-provider-tor providers/registry.opentofu.org/guardianproject/tor/99.0.0/linux_amd64
echo ""
echo "Setup complete! You can now run:"
echo " ./tf init"
echo " ./tf plan"
echo " ./tf apply"