Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
43 commits
Select commit Hold shift + click to select a range
e2f483a
Resolve conflicts
Dec 7, 2025
2475933
added example of intake runner
Dec 8, 2025
a811cce
added datasource for intake runner
Dec 16, 2025
7bbbf08
Add docs
Jan 22, 2026
50c8bd1
Update stackit/internal/services/intake/runner/data_source.go
yago-123 Jan 22, 2026
33f6815
Remove region field
Jan 22, 2026
a2d08e1
Add description to custom endpoint
Jan 22, 2026
6c3a88a
Adjust fields for resource.go (still missing region)
Jan 22, 2026
c0a6685
Reintroduce region as optional field in data resource
Jan 26, 2026
0e5feb6
Adjust resource implementation and implement review comments
Jan 26, 2026
d24b1ef
Reshape resource_acc_test
Jan 26, 2026
d188ead
Remove replace directive during name change & complement test checks
Jan 26, 2026
7a3c2e0
docs
Jan 26, 2026
2becb95
lint
Jan 26, 2026
a4549e6
Adjust resource_test
Jan 26, 2026
58c64da
adjust last small tweaks
Jan 26, 2026
d5bccb8
lint
Jan 26, 2026
ba16d3a
Add missing checks in tests
Jan 26, 2026
f2ad0fa
Fix remaining test failing in resource_test.go
Jan 26, 2026
2bd1e84
Adjust destroy function
Jan 27, 2026
8d67984
Reestablish tf-plugin-docs to newer version and re-generate docs prop…
Jan 29, 2026
81539a9
Address review
Feb 17, 2026
74612d3
Small adjustment
Feb 17, 2026
68d828b
Small adjustment and complete docs
Feb 20, 2026
9acff52
lint
Feb 23, 2026
f086fb2
Use new SDK with region removed from hostname
Mar 19, 2026
5e0ed3e
Remove computed field from description and labels
Mar 31, 2026
5bb64c2
Remove region from resource-min.tf test
Mar 31, 2026
9c4b907
Move numerical payloads to variables
Mar 31, 2026
be1d390
Remove region from resource-min.tf test
Mar 31, 2026
0e95436
Replace unnecessary concatenation with sprintf
Mar 31, 2026
a98876e
Add state fields before starting wait handler & retrieve ctx from Set…
Mar 31, 2026
c6ff756
Log response during update
Mar 31, 2026
9f50efe
Reestablish 'Computed: true' for labels until we agree on a solution
Mar 31, 2026
688ad0a
Use new SDK API hierarchy
Apr 1, 2026
198175b
Handle empty labels
Apr 1, 2026
8819830
Address review comments
Apr 21, 2026
ea3e940
Adjust to new config builder func and new client API
Apr 23, 2026
768e005
Rebase
Apr 23, 2026
81b24b7
Lint
Apr 24, 2026
4da9b97
rebase
May 5, 2026
d1ca511
Remove uneeded checks
May 5, 2026
a49df9f
address testing changes
May 5, 2026
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
41 changes: 41 additions & 0 deletions docs/data-sources/intake_runner.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,41 @@
---
# generated by https://github.com/hashicorp/terraform-plugin-docs
page_title: "stackit_intake_runner Data Source - stackit"
subcategory: ""
description: |-
Datasource for STACKIT Intake Runner.
---

# stackit_intake_runner (Data Source)

Datasource for STACKIT Intake Runner.
Comment thread
rubenhoenle marked this conversation as resolved.

## Example Usage

```terraform
data "stackit_intake_runner" "example" {
project_id = "xxxxxxxx-xxxx-xxxx-xxxx-xxxxxxxxxxxx"
runner_id = "xxxxxxxx-xxxx-xxxx-xxxx-xxxxxxxxxxxx"
}
```

<!-- schema generated by tfplugindocs -->
## Schema

### Required

- `project_id` (String) STACKIT Project ID to which the runner is associated.
- `runner_id` (String) The runner ID.

### Optional

- `region` (String) The resource region. If not defined, the provider region is used.

### Read-Only

- `description` (String) The description of the runner.
- `id` (String) Terraform's internal resource identifier. It is structured as "`project_id`,`region`,`runner_id`".
- `labels` (Map of String) User-defined labels.
- `max_message_size_kib` (Number) The maximum message size in KiB.
- `max_messages_per_hour` (Number) The maximum number of messages per hour.
- `name` (String) The name of the runner.
1 change: 1 addition & 0 deletions docs/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -175,6 +175,7 @@ Note: AWS specific checks must be skipped as they do not work on STACKIT. For de
- `experiments` (List of String) Enables experiments. These are unstable features without official support. More information can be found in the README. Available Experiments: iam, routing-tables, network
- `git_custom_endpoint` (String) Custom endpoint for the Git service
- `iaas_custom_endpoint` (String) Custom endpoint for the IaaS service
- `intake_custom_endpoint` (String) Custom endpoint for the Intake service
- `kms_custom_endpoint` (String) Custom endpoint for the KMS service
- `loadbalancer_custom_endpoint` (String) Custom endpoint for the Load Balancer service
- `logme_custom_endpoint` (String) Custom endpoint for the LogMe service
Expand Down
48 changes: 48 additions & 0 deletions docs/resources/intake_runner.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,48 @@
---
# generated by https://github.com/hashicorp/terraform-plugin-docs
page_title: "stackit_intake_runner Resource - stackit"
Comment thread
rubenhoenle marked this conversation as resolved.
subcategory: ""
description: |-
Manages STACKIT Intake Runner.
---

# stackit_intake_runner (Resource)

Manages STACKIT Intake Runner.

## Example Usage

```terraform
resource "stackit_intake_runner" "example" {
project_id = "xxxxxxxx-xxxx-xxxx-xxxx-xxxxxxxxxxxx"
name = "example-runner"
region = "eu01"
description = "An example runner for STACKIT Intake"
max_message_size_kib = 1024
max_messages_per_hour = 1000
labels = {
"env" = "development"
}
}
```

<!-- schema generated by tfplugindocs -->
## Schema

### Required

- `max_message_size_kib` (Number) The maximum message size in KiB.
- `max_messages_per_hour` (Number) The maximum number of messages per hour.
- `name` (String) The name of the runner.
- `project_id` (String) STACKIT Project ID to which the runner is associated.

### Optional

- `description` (String) The description of the runner.
- `labels` (Map of String) User-defined labels.
- `region` (String) The resource region. If not defined, the provider region is used.

### Read-Only

- `id` (String) Terraform's internal resource identifier. It is structured as "`project_id`,`region`,`runner_id`".
- `runner_id` (String) The runner ID.
4 changes: 4 additions & 0 deletions examples/data-sources/stackit_intake_runner/data-source.tf
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
data "stackit_intake_runner" "example" {
project_id = "xxxxxxxx-xxxx-xxxx-xxxx-xxxxxxxxxxxx"
runner_id = "xxxxxxxx-xxxx-xxxx-xxxx-xxxxxxxxxxxx"
}
11 changes: 11 additions & 0 deletions examples/resources/stackit_intake_runner/resource.tf
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
resource "stackit_intake_runner" "example" {
project_id = "xxxxxxxx-xxxx-xxxx-xxxx-xxxxxxxxxxxx"
name = "example-runner"
region = "eu01"
description = "An example runner for STACKIT Intake"
max_message_size_kib = 1024
max_messages_per_hour = 1000
labels = {
"env" = "development"
}
}
1 change: 1 addition & 0 deletions go.mod
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,7 @@ require (
github.com/stackitcloud/stackit-sdk-go/services/edge v0.9.2
github.com/stackitcloud/stackit-sdk-go/services/git v0.12.2
github.com/stackitcloud/stackit-sdk-go/services/iaas v1.11.1
github.com/stackitcloud/stackit-sdk-go/services/intake v0.8.1
github.com/stackitcloud/stackit-sdk-go/services/kms v1.8.0
github.com/stackitcloud/stackit-sdk-go/services/loadbalancer v1.12.2
github.com/stackitcloud/stackit-sdk-go/services/logme v0.28.2
Expand Down
2 changes: 2 additions & 0 deletions go.sum
Original file line number Diff line number Diff line change
Expand Up @@ -686,6 +686,8 @@ github.com/stackitcloud/stackit-sdk-go/services/git v0.12.2 h1:SOqbdC5hvjJRMUWEb
github.com/stackitcloud/stackit-sdk-go/services/git v0.12.2/go.mod h1:YZEL+gaK+ELn5E9VtK8yvz5RcmCBH+JkRpf6YbNVSbM=
github.com/stackitcloud/stackit-sdk-go/services/iaas v1.11.1 h1:HcKqjwIjv4OAW1aWI0U/JWjnzTwzSvdr6DLasH940EU=
github.com/stackitcloud/stackit-sdk-go/services/iaas v1.11.1/go.mod h1:Ts06id0KejUlQWbpR+/rm+tKng6QkTuFV1VQTPJ4dA4=
github.com/stackitcloud/stackit-sdk-go/services/intake v0.8.1 h1:Wkr/1OS/bn6cokqHtKJsYZjeHr+ludfMnoxKu9XVTWE=
github.com/stackitcloud/stackit-sdk-go/services/intake v0.8.1/go.mod h1:A7HS+7n4ZyIwFbHoJwBOGNTBd3udE+/LumEwPu2KvRg=
github.com/stackitcloud/stackit-sdk-go/services/kms v1.8.0 h1:w2wPPo87PPqYO/cvWCz6GGE/VYAvGh3yaK4UEOXY9Gw=
github.com/stackitcloud/stackit-sdk-go/services/kms v1.8.0/go.mod h1:pVaCmb1ZHAPGVRlSlBlVOjThp9Tb2sX9+nRX0M+d1KU=
github.com/stackitcloud/stackit-sdk-go/services/loadbalancer v1.12.2 h1:3Xnt5lnMmqVWChvH8lYJwpRoRatoqXfHlZ12wgNwUD4=
Expand Down
1 change: 1 addition & 0 deletions stackit/internal/core/core.go
Original file line number Diff line number Diff line change
Expand Up @@ -48,6 +48,7 @@ type ProviderData struct {
EdgeCloudCustomEndpoint string
GitCustomEndpoint string
IaaSCustomEndpoint string
IntakeCustomEndpoint string
KMSCustomEndpoint string
LoadBalancerCustomEndpoint string
LogMeCustomEndpoint string
Expand Down
Loading
Loading