refactor: update project references from Agathos to Ouranos across documentation and configuration files

This commit is contained in:
2026-03-14 01:15:02 +00:00
parent d996d179eb
commit 06118fbd40
38 changed files with 78 additions and 78 deletions

View File

@@ -1,6 +1,6 @@
resource "incus_project" "agathos" {
resource "incus_project" "ouranos" {
name = var.project_name
description = "Agathos Project"
description = "Ouranos Project"
remote = "local"
config = {
"features.storage.volumes" = true

View File

@@ -12,14 +12,14 @@ output "uranian_hosts" {
}
output "project_info" {
description = "Agathos project information"
description = "Ouranos project information"
value = {
name = incus_project.agathos.name
description = incus_project.agathos.description
name = incus_project.ouranos.name
description = incus_project.ouranos.description
}
}
output "agathos_inventory" {
output "ouranos_inventory" {
description = "Host inventory for documentation (sandbox.html) and DHCP/DNS provisioning reference"
value = {
uranian_hosts = {

View File

@@ -1,4 +1,4 @@
# Storage Resources for Agathos Containers
# Storage Resources for Ouranos Containers
# Provisions Incus storage volumes and S3 buckets with access keys
# Storage volume for Nextcloud data

View File

@@ -1,7 +1,7 @@
variable "project_name" {
description = "Name of the Incus project for sandbox environment"
type = string
default = "agathos"
default = "ouranos"
}
variable "profile_name" {