terraform-provider-knative

command module
v0.1.1 Latest Latest
Warning

This package is not in the latest version of its module.

Go to latest
Published: Jun 11, 2023 License: MPL-2.0 Imports: 5 Imported by: 0

README

⛰️ Terraform Knative Provider

Tests

Knative Serving builds on Kubernetes to support deploying and serving of applications and functions as serverless containers. This Terraform Provider lets you deploy and manage your Knative Services using Terraform. Maybe one day it'll support Knative Eventing, or even handle installing Knative for you.

Getting Started

Simply declare the provider as a requirement:

terraform {
  required_version = ">= 0.13"

  required_providers {
    knative = {
      source  = "theomessin/knative"
      version = ">= 0.1.1"
    }
  }
}

Now use the provider. For example, read the URL of an existing Service:

data "knative_service" "this" {
  name = "app"
}

output "app" {
  url = data.knative_service.this.status.url
}

Documentation

The Go Gopher

There is no documentation for this package.

Directories

Path Synopsis
internal

Jump to

Keyboard shortcuts

? : This menu
/ : Search site
f or F : Jump to
y or Y : Canonical URL