Skip to content

Commit 50e8da2

Browse files
Devansh ThakurYago Carlos Fernandez Gou
authored andcommitted
Resolve conflicts
# Conflicts: # go.mod # go.sum # stackit/internal/testutil/testutil.go # stackit/provider.go
1 parent da2bb41 commit 50e8da2

File tree

9 files changed

+1019
-0
lines changed

9 files changed

+1019
-0
lines changed

docs/index.md

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

stackit/internal/core/core.go

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -49,6 +49,7 @@ type ProviderData struct {
4949
EdgeCloudCustomEndpoint string
5050
GitCustomEndpoint string
5151
IaaSCustomEndpoint string
52+
IntakeCustomEndpoint string
5253
KMSCustomEndpoint string
5354
LoadBalancerCustomEndpoint string
5455
LogMeCustomEndpoint string

0 commit comments

Comments
 (0)