Files
hunfabric/fast/project-templates/data-mongodb/variables.tf
Ludovico Magnocavallo 554cc47707 Mongodb Atlas project template (#2986)
* mongodb project definition

* wip

* add psc output to net-address module

* wip

* wip

* initial README, test

* remove providers file

* boilerplate

* tfdoc

* test

* fix unrelated test

* outputs, better README
2025-03-29 08:43:27 +00:00

53 lines
1.4 KiB
HCL

/**
* Copyright 2025 Google LLC
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
variable "atlas_config" {
description = "MongoDB Atlas configuration."
type = object({
cluster_name = string
organization_id = string
project_name = string
region = string
database_version = optional(string)
instance_size = optional(string)
provider = object({
private_key = string
public_key = string
})
})
}
variable "name" {
description = "Prefix used for all resource names."
type = string
nullable = true
default = "mongodb"
}
variable "project_id" {
description = "Project id where the registries will be created."
type = string
}
variable "vpc_config" {
description = "VPC configuration."
type = object({
psc_cidr_block = string
network_name = string
subnetwork_id = string
})
}