Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
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
6 changes: 4 additions & 2 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
**/.speakeasy/temp/
**/.speakeasy/logs/
.env
.env.local
# .gitignore
.terraform
.terraform*
Expand Down Expand Up @@ -30,8 +34,6 @@ override.tf.json
.terraformrc
terraform.rc
.DS_Store

terraform-provider-epilot-file

original.yaml
original_modified.yaml
207 changes: 148 additions & 59 deletions .speakeasy/gen.lock

Large diffs are not rendered by default.

29 changes: 29 additions & 0 deletions .speakeasy/workflow.lock
Original file line number Diff line number Diff line change
@@ -0,0 +1,29 @@
speakeasyVersion: 1.634.2
sources:
my-source:
sourceNamespace: my-source
sourceRevisionDigest: sha256:083886e23c0af69c08fe7fd90f62dcb4b35d0146e90cdd5b5ab80d367986f7c7
sourceBlobDigest: sha256:a15225f21252c4d0cda133c8bce1992c0ec367b86e34c81f4e7526d07b5253bd
tags:
- latest
- speakeasy-sdk-regen-1758759850
- 1.0.0
targets:
terraform:
source: my-source
sourceNamespace: my-source
sourceRevisionDigest: sha256:083886e23c0af69c08fe7fd90f62dcb4b35d0146e90cdd5b5ab80d367986f7c7
sourceBlobDigest: sha256:a15225f21252c4d0cda133c8bce1992c0ec367b86e34c81f4e7526d07b5253bd
workflow:
workflowVersion: 1.0.0
speakeasyVersion: latest
sources:
my-source:
inputs:
- location: https://docs.api.epilot.io/file.yaml
registry:
location: registry.speakeasyapi.dev/epilot/epilot/my-source
targets:
terraform:
target: terraform
source: my-source
3 changes: 3 additions & 0 deletions .speakeasy/workflow.yaml
Original file line number Diff line number Diff line change
@@ -1,8 +1,11 @@
workflowVersion: 1.0.0
speakeasyVersion: latest
sources:
my-source:
inputs:
- location: https://docs.api.epilot.io/file.yaml
registry:
location: registry.speakeasyapi.dev/epilot/epilot/my-source
targets:
terraform:
target: terraform
Expand Down
31 changes: 24 additions & 7 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,7 @@ terraform {
required_providers {
epilot-file = {
source = "epilot-dev/epilot-file"
version = "0.5.0"
version = "0.6.0"
}
}
}
Expand Down Expand Up @@ -112,29 +112,46 @@ provider_installation {
```
<!-- End Testing the provider locally [usage] -->

<!-- Start Authentication [security] -->
## Authentication

This provider supports authentication configuration via provider configuration.

Available configuration:

| Provider Attribute | Description |
|---|---|
| `cookie_auth` | Cookie with epilot OAuth2 token. |
| `epilot_auth` | Authorization header with epilot OAuth2 bearer token. |
<!-- End Authentication [security] -->

<!-- Start Available Resources and Data Sources [operations] -->
## Available Resources and Data Sources

### Resources

* [epilot-file_file](docs/resources/file.md)
### Data Sources

* [epilot-file_file](docs/data-sources/file.md)
<!-- End Available Resources and Data Sources [operations] -->

<!-- Start Summary [summary] -->
## Summary

File API: Upload and manage epilot Files

## Changelog
<a href="changelog">View API Changelog</a>
<!-- End Summary [summary] -->

<!-- Start Table of Contents [toc] -->
## Table of Contents
<!-- $toc-max-depth=2 -->
* [epilot-file](#epilot-file)
* [Installation](#installation)
* [Testing the provider locally](#testing-the-provider-locally)
* [Authentication](#authentication)
* [Available Resources and Data Sources](#available-resources-and-data-sources)
* [Changelog](#changelog)

* [Installation](#installation)
* [Available Resources and Data Sources](#available-resources-and-data-sources)
* [Testing the provider locally](#testing-the-provider-locally)
<!-- End Table of Contents [toc] -->

<!-- Placeholder for Future Speakeasy SDK Sections -->
Expand Down
12 changes: 11 additions & 1 deletion RELEASES.md
Original file line number Diff line number Diff line change
Expand Up @@ -14,4 +14,14 @@ Based on:
- OpenAPI Doc 0.1.0
- Speakeasy CLI 1.148.0 (2.237.3) https://github.com/speakeasy-api/speakeasy
### Generated
- [terraform v0.1.0] .
- [terraform v0.1.0] .

## 2025-10-05 00:26:28
### Changes
Based on:
- OpenAPI Doc
- Speakeasy CLI 1.634.2 (2.721.3) https://github.com/speakeasy-api/speakeasy
### Generated
- [terraform v0.6.0] .
### Releases
- [Terraform v0.6.0] https://registry.terraform.io/providers/epilot-dev/epilot-file/0.6.0 - .
102 changes: 0 additions & 102 deletions docs/data-sources/file.md

This file was deleted.

12 changes: 8 additions & 4 deletions docs/index.md
Original file line number Diff line number Diff line change
@@ -1,23 +1,27 @@
---
# generated by https://github.com/hashicorp/terraform-plugin-docs
page_title: "epilot-file Provider"
subcategory: ""
description: |-
File API: Upload and manage epilot Files
Changelog
View API Changelog
---

# epilot-file Provider

File API: Upload and manage epilot Files

## Changelog
<a href="changelog">View API Changelog</a>

## Example Usage

```terraform
terraform {
required_providers {
epilot-file = {
source = "epilot-dev/epilot-file"
version = "0.5.0"
version = "0.6.0"
}
}
}
Expand All @@ -32,6 +36,6 @@ provider "epilot-file" {

### Optional

- `cookie_auth` (String, Sensitive)
- `epilot_auth` (String, Sensitive)
- `cookie_auth` (String, Sensitive) Cookie with epilot OAuth2 token.
- `epilot_auth` (String, Sensitive) Authorization header with epilot OAuth2 bearer token.
- `server_url` (String) Server URL (defaults to https://file.sls.epilot.io)
Loading