Skip to content
Closed
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
133 changes: 78 additions & 55 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.615.2
sources:
my-source:
sourceNamespace: my-source
sourceRevisionDigest: sha256:2bed7aca845307fce5f4086207fc65666c9e23f1546473076f8549d3965ca796
sourceBlobDigest: sha256:982d04b364c4967e1ca8d02e6a875453cb4246909d1cfb311d6bd162d96cedd8
tags:
- latest
- speakeasy-sdk-regen-1730852495
- 0.2.1
targets:
terraform:
source: my-source
sourceNamespace: my-source
sourceRevisionDigest: sha256:2bed7aca845307fce5f4086207fc65666c9e23f1546473076f8549d3965ca796
sourceBlobDigest: sha256:982d04b364c4967e1ca8d02e6a875453cb4246909d1cfb311d6bd162d96cedd8
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
27 changes: 20 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,15 +112,25 @@ 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] -->
Expand All @@ -131,10 +141,13 @@ File API: Upload and manage epilot Files

<!-- 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)

* [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-09-12 00:23:29
### Changes
Based on:
- OpenAPI Doc
- Speakeasy CLI 1.615.2 (2.698.4) 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.

7 changes: 3 additions & 4 deletions docs/index.md
Original file line number Diff line number Diff line change
@@ -1,7 +1,6 @@
---
# generated by https://github.com/hashicorp/terraform-plugin-docs
page_title: "epilot-file Provider"
subcategory: ""
description: |-
File API: Upload and manage epilot Files
---
Expand All @@ -17,7 +16,7 @@ terraform {
required_providers {
epilot-file = {
source = "epilot-dev/epilot-file"
version = "0.5.0"
version = "0.6.0"
}
}
}
Expand All @@ -32,6 +31,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