Resource Packs

Cloud

Example

Flavor

Feature

Mongodb

Example: mongodb resource using a Kubernetes Deployment

This example configures a mongodb Resource Definition using Kubernetes Deployment.

Requirements

Name Version
terraform >= 1.3.0
humanitec ~> 1.0

Providers

Name Version
humanitec ~> 1.0

Modules

Name Source Version
mongodb_basic ../../humanitec-resource-defs/mongodb/basic n/a

Resources

Name Type
humanitec_resource_definition_criteria.mongodb_basic resource

Inputs

Name Description Type Default Required
prefix Prefix of the created resources string "hum-rp-mongodb-ex-" no

Deploy and use this example

To deploy this resource definition, run these commands below:

git clone https://github.com/humanitec-architecture/resource-packs-in-cluster

cd examples/mongodb/

humctl login
humctl config set org YOUR-ORG

terraform init
terraform plan
terraform apply

The created Resource Definition can be used in your Score file like illustrated below:

apiVersion: score.dev/v1b1
metadata:
  name: my-workload
containers:
  my-container:
    image: nginx:latest # this container image is just used as an example, it's not talking to mongodb.
    variables:
      MONGODB_CONNECTION_STRING: "${resources.my-mongodb.connection}"
resources:
  my-mongodb:
    type: mongodb

This Score file when deployed to Humanitec will provision the mongodb database and inject the outputs in the associated environment variable.

Here is how to deploy this Score file, for example to the mongodb-example Application and development Environment:

humctl create app mongodb-example

humctl score deploy \
    -f score.yaml \
    --app mongodb-example \
    --env development

main.tf (view on GitHub) :

module "mongodb_basic" {
  source = "github.com/humanitec-architecture/resource-packs-in-cluster?ref=v2024-10-15//humanitec-resource-defs/mongodb/basic"

  prefix = var.prefix
}

resource "humanitec_resource_definition_criteria" "mongodb_basic" {
  resource_definition_id = module.mongodb_basic.id
  class                  = "default"
  force_delete           = true
}


providers.tf (view on GitHub) :

terraform {
  required_providers {
    humanitec = {
      source  = "humanitec/humanitec"
      version = "~> 1.0"
    }
  }
  required_version = ">= 1.3.0"
}


provider "humanitec" {}


terraform.tfvars.example (view on GitHub) :


# Prefix of the created resources
prefix = "hum-rp-mongodb-ex-"

variables.tf (view on GitHub) :

variable "prefix" {
  description = "Prefix of the created resources"
  type        = string
  default     = "hum-rp-mongodb-ex-"
}

Top