Skip to content

Commit

Permalink
fix: ci
Browse files Browse the repository at this point in the history
  • Loading branch information
JivusAyrus committed Nov 14, 2024
1 parent 108d13a commit 240c535
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 2 deletions.
2 changes: 2 additions & 0 deletions docs/resources/monograph.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
}
```

Expand All @@ -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.
Expand Down
2 changes: 1 addition & 1 deletion examples/guides/cosmo-monograph-contract/main.tf
Original file line number Diff line number Diff line change
Expand Up @@ -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" {
Expand Down
2 changes: 1 addition & 1 deletion examples/resources/cosmo_monograph/resource.tf
Original file line number Diff line number Diff line change
Expand Up @@ -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
}

0 comments on commit 240c535

Please sign in to comment.