-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #2 from davidfischer-ch/develop
Icon feature
- Loading branch information
Showing
26 changed files
with
814 additions
and
449 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,30 @@ | ||
--- | ||
# generated by https://github.com/hashicorp/terraform-plugin-docs | ||
page_title: "aria_icon Data Source - aria" | ||
subcategory: "" | ||
description: |- | ||
Icon data source | ||
--- | ||
|
||
# aria_icon (Data Source) | ||
|
||
Icon data source | ||
|
||
## Example Usage | ||
|
||
```terraform | ||
data "aria_icon" "example" { | ||
id = "cfac7e0e-7367-3fd3-8e39-cbae66392fcd" | ||
} | ||
``` | ||
|
||
<!-- schema generated by tfplugindocs --> | ||
## Schema | ||
|
||
### Required | ||
|
||
- `id` (String) Icon identifier | ||
|
||
### Read-Only | ||
|
||
- `content` (String) Icon content |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,37 @@ | ||
--- | ||
# generated by https://github.com/hashicorp/terraform-plugin-docs | ||
page_title: "aria_icon Resource - aria" | ||
subcategory: "" | ||
description: |- | ||
Icon resource | ||
--- | ||
|
||
# aria_icon (Resource) | ||
|
||
Icon resource | ||
|
||
## Example Usage | ||
|
||
```terraform | ||
resource "aria_icon" "example" { | ||
content = file("icon.svg") | ||
} | ||
output "example_icon" { | ||
value = { | ||
id = aria_icon.example.id | ||
hash = sha256(aria_icon.example.content) | ||
} | ||
} | ||
``` | ||
|
||
<!-- schema generated by tfplugindocs --> | ||
## Schema | ||
|
||
### Required | ||
|
||
- `content` (String) Icon content (force recreation on change) | ||
|
||
### Read-Only | ||
|
||
- `id` (String) Icon identifier (Aria seem to compute it from content) |
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
data "aria_icon" "example" { | ||
id = "cfac7e0e-7367-3fd3-8e39-cbae66392fcd" | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,3 @@ | ||
provider "aria" { | ||
# example configuration here | ||
host = "https://my.aria-instance.net" | ||
} |
This file was deleted.
Oops, something went wrong.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,10 @@ | ||
resource "aria_icon" "example" { | ||
content = file("icon.svg") | ||
} | ||
|
||
output "example_icon" { | ||
value = { | ||
id = aria_icon.example.id | ||
hash = sha256(aria_icon.example.content) | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.