| page_title | morpheus_helm_app_blueprint Resource - terraform-provider-morpheus |
|---|---|
| subcategory | |
| description | Provides a Morpheus helm app blueprint resource |
Provides a Morpheus helm app blueprint resource
Creating the Helm app blueprint with the blueprint fetched via git:
resource "morpheus_helm_app_blueprint" "tf_example_helm_app_blueprint" {
name = "helmappblueprint"
description = "tf example helm app blueprint"
category = "helm"
integration_id = 3
repository_id = 1
version_ref = "main"
working_path = "./test"
}integration_id(Number) The ID of the git integrationname(String) The name of the helm app blueprintrepository_id(Number) The ID of the git repository
category(String) The category of the helm app blueprintdescription(String) The description of the helm app blueprintversion_ref(String) The git reference of the repository to pull (main, master, etc.)working_path(String) The path of the helm chart in the git repository
id(String) The ID of the helm app blueprint
Import is supported using the following syntax:
terraform import morpheus_helm_app_blueprint.tf_example_helm_app_blueprint 1