Skip to content

Commit 79fb6fb

Browse files
nicogeldersNico GeldersQuintenBruynseraede
authored
22 feat implement dagster code location from document (#60)
Co-authored-by: Nico Gelders <[email protected]> Co-authored-by: Quinten Bruynseraede <[email protected]>
1 parent 6280fb2 commit 79fb6fb

File tree

14 files changed

+1111
-3
lines changed

14 files changed

+1111
-3
lines changed

README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,6 @@ Terraform provider to manage Dagster Cloud resources.
1414
| Current deployment | | :heavy_check_mark: |
1515
| Deployment | :heavy_check_mark: | :x: |
1616
| Deployment settings | :heavy_check_mark: | :x: |
17-
| Code location | Partial | :x: |
17+
| Code location | :heavy_check_mark: | :x: |
1818
| Team | :heavy_check_mark: | :x: |
1919
| Team membership | :heavy_check_mark: | :x: |
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,38 @@
1+
---
2+
# generated by https://github.com/hashicorp/terraform-plugin-docs
3+
page_title: "dagster_code_location_from_document Resource - dagster"
4+
subcategory: ""
5+
description: |-
6+
Creates a code location from a dagster configuration document.
7+
---
8+
9+
# dagster_code_location_from_document (Resource)
10+
11+
Creates a code location from a dagster configuration document.
12+
13+
## Example Usage
14+
15+
```terraform
16+
resource "dagster_code_location_from_document" "example" {
17+
document = data.dagster_configuration_document.example.json
18+
}
19+
20+
data "dagster_configuration_document" "example" {
21+
yaml_body = <<YAML
22+
location_name: "example_code_location_from_document"
23+
code_source:
24+
python_file: "a_python_file.py"
25+
YAML
26+
}
27+
```
28+
29+
<!-- schema generated by tfplugindocs -->
30+
## Schema
31+
32+
### Required
33+
34+
- `document` (String) Code location as a JSON document. We recommend using a `dagster_configuration_document` to generate this instead of composing a JSON document yourself.
35+
36+
### Read-Only
37+
38+
- `name` (String) Code location name
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,47 @@
1+
variable "organization" {
2+
type = string
3+
}
4+
5+
variable "deployment" {
6+
type = string
7+
}
8+
9+
variable "api_token" {
10+
type = string
11+
}
12+
13+
terraform {
14+
required_version = ">= 1.3.5"
15+
16+
required_providers {
17+
dagster = {
18+
source = "datarootsio/dagster"
19+
}
20+
}
21+
22+
backend "local" {
23+
path = "terraform.tfstate"
24+
}
25+
}
26+
27+
provider "dagster" {
28+
organization = var.organization
29+
deployment = var.deployment
30+
api_token = var.api_token
31+
}
32+
33+
resource "dagster_code_location_from_document" "example" {
34+
document = data.dagster_configuration_document.example.json
35+
}
36+
37+
data "dagster_configuration_document" "example" {
38+
yaml_body = <<YAML
39+
location_name: "example_code_location_from_document"
40+
code_source:
41+
python_file: "a_python_file.py"
42+
YAML
43+
}
44+
45+
output "code_location" {
46+
value = dagster_code_location_from_document.example
47+
}
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
resource "dagster_code_location_from_document" "example" {
2+
document = data.dagster_configuration_document.example.json
3+
}
4+
5+
data "dagster_configuration_document" "example" {
6+
yaml_body = <<YAML
7+
location_name: "example_code_location_from_document"
8+
code_source:
9+
python_file: "a_python_file.py"
10+
YAML
11+
}

0 commit comments

Comments
 (0)