Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
38 commits
Select commit Hold shift + click to select a range
47b81cc
Resolve conflicts
Dec 7, 2025
cd7afd7
added example of intake runner
Dec 8, 2025
6cd1576
added datasource for intake runner
Dec 16, 2025
d86b63e
Resolve conflicts
Jan 22, 2026
dc989ee
Add docs
Jan 22, 2026
68b9ee4
Update stackit/internal/services/intake/runner/data_source.go
yago-123 Jan 22, 2026
42eeda6
Remove region field
Jan 22, 2026
c30eb6a
Add description to custom endpoint
Jan 22, 2026
139027a
Adjust fields for resource.go (still missing region)
Jan 22, 2026
07ae9aa
Reintroduce region as optional field in data resource
Jan 26, 2026
ccab9c7
Adjust resource implementation and implement review comments
Jan 26, 2026
70d0890
Reshape resource_acc_test
Jan 26, 2026
e9e819b
Remove replace directive during name change & complement test checks
Jan 26, 2026
c175acc
docs
Jan 26, 2026
3b40d7c
lint
Jan 26, 2026
dbdb4f7
Adjust resource_test
Jan 26, 2026
af76741
adjust last small tweaks
Jan 26, 2026
0a779a8
lint
Jan 26, 2026
9feee40
Add missing checks in tests
Jan 26, 2026
6804432
Fix remaining test failing in resource_test.go
Jan 26, 2026
ded68a1
Adjust destroy function
Jan 27, 2026
ecb66fd
Reestablish tf-plugin-docs to newer version and re-generate docs prop…
Jan 29, 2026
a7964f6
Address review
Feb 17, 2026
4dd0beb
Small adjustment
Feb 17, 2026
87f2376
Small adjustment and complete docs
Feb 20, 2026
7ff4f54
Rebase
Feb 23, 2026
f250771
lint
Feb 23, 2026
1c0e2ab
Use new SDK with region removed from hostname
Mar 19, 2026
34c0665
Remove computed field from description and labels
Mar 31, 2026
f7e9630
Remove region from resource-min.tf test
Mar 31, 2026
d13bff8
Move numerical payloads to variables
Mar 31, 2026
90146e7
Remove region from resource-min.tf test
Mar 31, 2026
97c1743
Replace unnecessary concatenation with sprintf
Mar 31, 2026
1ba732a
Add state fields before starting wait handler & retrieve ctx from Set…
Mar 31, 2026
3f5ab14
Log response during update
Mar 31, 2026
72ccfa3
Reestablish 'Computed: true' for labels until we agree on a solution
Mar 31, 2026
e84b991
Use new SDK API hierarchy
Apr 1, 2026
6028dd1
Handle empty labels
Apr 1, 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.
Copy link
Copy Markdown
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

example still missing

Copy link
Copy Markdown

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

done


## 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 @@ -173,6 +173,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"
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"
}
}
3 changes: 2 additions & 1 deletion go.mod
Original file line number Diff line number Diff line change
Expand Up @@ -11,12 +11,13 @@ require (
github.com/hashicorp/terraform-plugin-go v0.29.0
github.com/hashicorp/terraform-plugin-log v0.10.0
github.com/hashicorp/terraform-plugin-testing v1.14.0
github.com/stackitcloud/stackit-sdk-go/core v0.21.1
github.com/stackitcloud/stackit-sdk-go/core v0.23.0
github.com/stackitcloud/stackit-sdk-go/services/cdn v1.10.0
github.com/stackitcloud/stackit-sdk-go/services/dns v0.17.6
github.com/stackitcloud/stackit-sdk-go/services/edge v0.4.3
github.com/stackitcloud/stackit-sdk-go/services/git v0.10.3
github.com/stackitcloud/stackit-sdk-go/services/iaas v1.3.5
github.com/stackitcloud/stackit-sdk-go/services/intake v0.7.1
github.com/stackitcloud/stackit-sdk-go/services/kms v1.3.2
github.com/stackitcloud/stackit-sdk-go/services/loadbalancer v1.7.3
github.com/stackitcloud/stackit-sdk-go/services/logme v0.25.6
Expand Down
6 changes: 6 additions & 0 deletions go.sum
Original file line number Diff line number Diff line change
Expand Up @@ -151,6 +151,8 @@ github.com/skeema/knownhosts v1.3.1 h1:X2osQ+RAjK76shCbvhHHHVl3ZlgDm8apHEHFqRjnB
github.com/skeema/knownhosts v1.3.1/go.mod h1:r7KTdC8l4uxWRyK2TpQZ/1o5HaSzh06ePQNxPwTcfiY=
github.com/stackitcloud/stackit-sdk-go/core v0.21.1 h1:Y/PcAgM7DPYMNqum0MLv4n1mF9ieuevzcCIZYQfm3Ts=
github.com/stackitcloud/stackit-sdk-go/core v0.21.1/go.mod h1:osMglDby4csGZ5sIfhNyYq1bS1TxIdPY88+skE/kkmI=
github.com/stackitcloud/stackit-sdk-go/core v0.23.0 h1:zPrOhf3Xe47rKRs1fg/AqKYUiJJRYjdcv+3qsS50mEs=
github.com/stackitcloud/stackit-sdk-go/core v0.23.0/go.mod h1:osMglDby4csGZ5sIfhNyYq1bS1TxIdPY88+skE/kkmI=
github.com/stackitcloud/stackit-sdk-go/services/authorization v0.12.0 h1:HxPgBu04j5tj6nfZ2r0l6v4VXC0/tYOGe4sA5Addra8=
github.com/stackitcloud/stackit-sdk-go/services/authorization v0.12.0/go.mod h1:uYI9pHAA2g84jJN25ejFUxa0/JtfpPZqMDkctQ1BzJk=
github.com/stackitcloud/stackit-sdk-go/services/cdn v1.10.0 h1:YALzjYAApyQMKyt4C2LKhPRZHa6brmbFeKuuwl+KOTs=
Expand All @@ -163,6 +165,10 @@ github.com/stackitcloud/stackit-sdk-go/services/git v0.10.3 h1:VIjkSofZz9utOOkBd
github.com/stackitcloud/stackit-sdk-go/services/git v0.10.3/go.mod h1:EJk1Ss9GTel2NPIu/w3+x9XcQcEd2k3ibea5aQDzVhQ=
github.com/stackitcloud/stackit-sdk-go/services/iaas v1.3.5 h1:W57+XRa8wTLsi5CV9Tqa7mGgt/PvlRM//RurXSmvII8=
github.com/stackitcloud/stackit-sdk-go/services/iaas v1.3.5/go.mod h1:lTWjW57eAq1bwfM6nsNinhoBr3MHFW/GaFasdAsYfDM=
github.com/stackitcloud/stackit-sdk-go/services/intake v0.4.2 h1:xywfPSTBV6lqcnueI++KsyWvnZTKCfoCVp8/kzT/RXE=
github.com/stackitcloud/stackit-sdk-go/services/intake v0.4.2/go.mod h1:Ki7BldvSi1f5Lhy7iDeBkAhUvgXPCSAsaqFuxrkPDpg=
github.com/stackitcloud/stackit-sdk-go/services/intake v0.7.1 h1:7ZSrwps/zI41rl+xYkG4osld8cyAwssyl/UZ/Iu/F2g=
github.com/stackitcloud/stackit-sdk-go/services/intake v0.7.1/go.mod h1:ZIvwBZwEMFO+YfJLCNXqabslI0Fp9zxV7ZBwlZjk7uE=
github.com/stackitcloud/stackit-sdk-go/services/kms v1.3.2 h1:2ulSL2IkIAKND59eAjbEhVkOoBMyvm48ojwz1a3t0U0=
github.com/stackitcloud/stackit-sdk-go/services/kms v1.3.2/go.mod h1:cuIaMMiHeHQsbvy7BOFMutoV3QtN+ZBx7Tg3GmYUw7s=
github.com/stackitcloud/stackit-sdk-go/services/loadbalancer v1.7.3 h1:d/qIj+XNaqByVbLvwpWoA0Ekv0yrONWyNswg4/jGX7Y=
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 @@ -43,6 +43,7 @@ type ProviderData struct {
EdgeCloudCustomEndpoint string
GitCustomEndpoint string
IaaSCustomEndpoint string
IntakeCustomEndpoint string
KMSCustomEndpoint string
LoadBalancerCustomEndpoint string
LogMeCustomEndpoint string
Expand Down
Loading