Skip to content

Commit b4205d9

Browse files
author
Devansh Thakur
committed
onboarding intake runner
1 parent c8c7127 commit b4205d9

File tree

11 files changed

+1036
-0
lines changed

11 files changed

+1036
-0
lines changed

docs/index.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -162,6 +162,7 @@ Note: AWS specific checks must be skipped as they do not work on STACKIT. For de
162162
- `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
163163
- `git_custom_endpoint` (String) Custom endpoint for the Git service
164164
- `iaas_custom_endpoint` (String) Custom endpoint for the IaaS service
165+
- `intake_custom_endpoint` (String)
165166
- `kms_custom_endpoint` (String) Custom endpoint for the KMS service
166167
- `loadbalancer_custom_endpoint` (String) Custom endpoint for the Load Balancer service
167168
- `logme_custom_endpoint` (String) Custom endpoint for the LogMe service

docs/resources/intake_runner.md

Lines changed: 34 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,34 @@
1+
---
2+
# generated by https://github.com/hashicorp/terraform-plugin-docs
3+
page_title: "stackit_intake_runner Resource - stackit"
4+
subcategory: ""
5+
description: |-
6+
Manages STACKIT Intake Runner.
7+
---
8+
9+
# stackit_intake_runner (Resource)
10+
11+
Manages STACKIT Intake Runner.
12+
13+
14+
15+
<!-- schema generated by tfplugindocs -->
16+
## Schema
17+
18+
### Required
19+
20+
- `max_message_size_kib` (Number) The maximum message size in KiB.
21+
- `max_messages_per_hour` (Number) The maximum number of messages per hour.
22+
- `name` (String) The name of the runner.
23+
- `project_id` (String) STACKIT Project ID to which the runner is associated.
24+
25+
### Optional
26+
27+
- `description` (String) The description of the runner.
28+
- `labels` (Map of String) User-defined labels.
29+
- `region` (String) The resource region. If not defined, the provider region is used.
30+
31+
### Read-Only
32+
33+
- `id` (String) Terraform's internal resource identifier. It is structured as "`project_id`,`runner_id`".
34+
- `runner_id` (String) The runner ID.

go.mod

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -17,6 +17,7 @@ require (
1717
github.com/stackitcloud/stackit-sdk-go/services/git v0.8.0
1818
github.com/stackitcloud/stackit-sdk-go/services/iaas v0.31.0
1919
github.com/stackitcloud/stackit-sdk-go/services/iaasalpha v0.1.21-alpha
20+
github.com/stackitcloud/stackit-sdk-go/services/intake v0.4.0
2021
github.com/stackitcloud/stackit-sdk-go/services/kms v1.0.0
2122
github.com/stackitcloud/stackit-sdk-go/services/loadbalancer v1.6.0
2223
github.com/stackitcloud/stackit-sdk-go/services/logme v0.25.1

go.sum

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -166,6 +166,8 @@ github.com/stackitcloud/stackit-sdk-go/services/iaas v0.31.0 h1:dnEjyapuv8WwRN5v
166166
github.com/stackitcloud/stackit-sdk-go/services/iaas v0.31.0/go.mod h1:854gnLR92NvAbJAA1xZEumrtNh1DoBP1FXTMvhwYA6w=
167167
github.com/stackitcloud/stackit-sdk-go/services/iaasalpha v0.1.21-alpha h1:m1jq6a8dbUe+suFuUNdHmM/cSehpGLUtDbK1CqLqydg=
168168
github.com/stackitcloud/stackit-sdk-go/services/iaasalpha v0.1.21-alpha/go.mod h1:Nu1b5Phsv8plgZ51+fkxPVsU91ZJ5Ayz+cthilxdmQ8=
169+
github.com/stackitcloud/stackit-sdk-go/services/intake v0.4.0 h1:KwjR5L+IoUbRYS8k3dyqHgtBUuq8cqRPrUrzzZSSnRI=
170+
github.com/stackitcloud/stackit-sdk-go/services/intake v0.4.0/go.mod h1:Nea8wkoPGvcjKCsjfbAB3pE3kA7oZLi+Zk9hUtunjRI=
169171
github.com/stackitcloud/stackit-sdk-go/services/kms v1.0.0 h1:zxoOv7Fu+FmdsvTKiKkbmLItrMKfL+QoVtz9ReEF30E=
170172
github.com/stackitcloud/stackit-sdk-go/services/kms v1.0.0/go.mod h1:KEPVoO21pC4bjy5l0nyhjUJ0+uVwVWb+k2TYrzJ8xYw=
171173
github.com/stackitcloud/stackit-sdk-go/services/loadbalancer v1.6.0 h1:q33ZaCBVEBUsnMDxYyuJKtJvGcE5nKgvuPed3s8zXNI=

stackit/internal/core/core.go

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -37,6 +37,7 @@ type ProviderData struct {
3737
DnsCustomEndpoint string
3838
GitCustomEndpoint string
3939
IaaSCustomEndpoint string
40+
IntakeCustomEndpoint string
4041
KMSCustomEndpoint string
4142
LoadBalancerCustomEndpoint string
4243
LogMeCustomEndpoint string

0 commit comments

Comments
 (0)