From 9a768f3816d0e193a86dee1868c902e88f036980 Mon Sep 17 00:00:00 2001 From: Tiago Ribeiro Date: Sat, 21 Feb 2026 16:17:54 -0300 Subject: [PATCH] docs: add Euronodes Object Storage, consolidate storage docs --- OBJECT-STORAGE.md | 69 +++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 69 insertions(+) create mode 100644 OBJECT-STORAGE.md diff --git a/OBJECT-STORAGE.md b/OBJECT-STORAGE.md new file mode 100644 index 0000000..f638a2f --- /dev/null +++ b/OBJECT-STORAGE.md @@ -0,0 +1,69 @@ +# Object Storage - Rede5 + +Servicos de armazenamento de objetos para backup e credenciais. + +--- + +## Civo Object Storage (NYC1) + +| Propriedade | Valor | +|-------------|-------| +| Endpoint | https://objectstore.nyc1.civo.com | +| Region | NYC1 | +| Bucket | rede5 | +| Arquivo | `~/.ssh/civo-object-storage` | + +## Euronodes Object Storage (EU) + +| Propriedade | Valor | +|-------------|-------| +| Endpoint | https://eu-west-1.euronodes.com | +| Region | eu-west-1 | +| Arquivo | `~/.ssh/euronodes-object-storage` | + +--- + +## Configuracao AWS CLI + +```bash +# Para Civo +aws configure --profile civo +# Access Key: +# Secret Key: +# Region: NYC1 +# Output: json + +# Para Euronodes +aws configure --profile euronodes +# Access Key: +# Secret Key: +# Region: eu-west-1 +# Output: json +``` + +## Comandos + +```bash +# Listar buckets - Civo +aws s3 ls --endpoint-url https://objectstore.nyc1.civo.com --profile civo + +# Listar buckets - Euronodes +aws s3 ls --endpoint-url https://eu-west-1.euronodes.com --profile euronodes + +# Upload backup SSH - Civo +aws s3 sync ~/.ssh/ s3://rede5/vault/ssh/ --endpoint-url https://objectstore.nyc1.civo.com --profile civo + +# Upload backup SSH - Euronodes +aws s3 sync ~/.ssh/ s3://vault/ssh/ --endpoint-url https://eu-west-1.euronodes.com --profile euronodes + +# Download backup +aws s3 sync s3://rede5/vault/ssh/ ~/.ssh/ --endpoint-url https://objectstore.nyc1.civo.com --profile civo +``` + +## Vault Local + +Backup local em: `~/.ssh/vault/` + +--- + +*Atualizado em: 2026-02-21*