From 240c53576199462947493f9bf272fbb8ca93cc64 Mon Sep 17 00:00:00 2001 From: JivusAyrus Date: Thu, 14 Nov 2024 19:14:43 +0530 Subject: [PATCH] fix: ci --- docs/resources/monograph.md | 2 ++ examples/guides/cosmo-monograph-contract/main.tf | 2 +- examples/resources/cosmo_monograph/resource.tf | 2 +- 3 files changed, 4 insertions(+), 2 deletions(-) diff --git a/docs/resources/monograph.md b/docs/resources/monograph.md index 28101a4..f48c40b 100644 --- a/docs/resources/monograph.md +++ b/docs/resources/monograph.md @@ -21,6 +21,7 @@ resource "cosmo_monograph" "example" { namespace = var.monograph_namespace graph_url = var.monograph_graph_url routing_url = var.monograph_routing_url + schema = var.monograph_schema } ``` @@ -39,6 +40,7 @@ resource "cosmo_monograph" "example" { - `admission_webhook_url` (String) The admission webhook URL for the monograph. - `namespace` (String) The namespace in which the monograph is located. - `readme` (String) The readme for the subgraph. +- `schema` (String) The schema for the subgraph. - `subscription_protocol` (String) The subscription protocol for the subgraph. - `subscription_url` (String) The subscription URL for the subgraph. - `websocket_subprotocol` (String) The websocket subprotocol for the subgraph. diff --git a/examples/guides/cosmo-monograph-contract/main.tf b/examples/guides/cosmo-monograph-contract/main.tf index 4173ddf..303f1f4 100644 --- a/examples/guides/cosmo-monograph-contract/main.tf +++ b/examples/guides/cosmo-monograph-contract/main.tf @@ -11,7 +11,7 @@ module "cosmo_monograph" { monograph_namespace = module.cosmo_namespace.name monograph_graph_url = var.monograph_graph_url monograph_routing_url = var.monograph_routing_url - monograph_schema = var.monograph_schema + monograph_schema = var.monograph_schema } module "cosmo_contract" { diff --git a/examples/resources/cosmo_monograph/resource.tf b/examples/resources/cosmo_monograph/resource.tf index 2b5359d..1a00bad 100644 --- a/examples/resources/cosmo_monograph/resource.tf +++ b/examples/resources/cosmo_monograph/resource.tf @@ -3,5 +3,5 @@ resource "cosmo_monograph" "example" { namespace = var.monograph_namespace graph_url = var.monograph_graph_url routing_url = var.monograph_routing_url - schema = var.monograph_schema + schema = var.monograph_schema } \ No newline at end of file