-
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 Parallels/wip
Wip
- Loading branch information
Showing
136 changed files
with
9,878 additions
and
986 deletions.
There are no files selected for viewing
Validating CODEOWNERS rules …
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 +1 @@ | ||
* @hashicorp/terraform-devex | ||
* @cjlapao |
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 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 |
---|---|---|
|
@@ -33,3 +33,6 @@ website/vendor | |
|
||
# Keep windows files with windows line endings | ||
*.winfile eol=crlf | ||
|
||
terraform-provider-* | ||
.local/ |
File renamed without changes.
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
{ | ||
"db_connection": "host=db port=5432 user=postgres password=password dbname=products sslmode=disable", | ||
"bind_address": "0.0.0.0:9090", | ||
"metrics_address": "localhost:9102" | ||
} |
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,20 @@ | ||
version: '3.7' | ||
services: | ||
api: | ||
image: "hashicorpdemoapp/product-api:v0.0.22" | ||
ports: | ||
- "19090:9090" | ||
volumes: | ||
- ./conf.json:/config/config.json | ||
environment: | ||
CONFIG_FILE: '/config/config.json' | ||
depends_on: | ||
- db | ||
db: | ||
image: "hashicorpdemoapp/product-api-db:v0.0.22" | ||
ports: | ||
- "15432:5432" | ||
environment: | ||
POSTGRES_DB: 'products' | ||
POSTGRES_USER: 'postgres' | ||
POSTGRES_PASSWORD: 'password' |
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,76 @@ | ||
--- | ||
# generated by https://github.com/hashicorp/terraform-plugin-docs | ||
page_title: "parallels-desktop_vm Data Source - terraform-provider-parallels-desktop" | ||
subcategory: "" | ||
description: |- | ||
Virtual Machine Data Source | ||
--- | ||
|
||
# parallels-desktop_vm (Data Source) | ||
|
||
Virtual Machine Data Source | ||
|
||
## Example Usage | ||
|
||
```terraform | ||
data "parallels-desktop_vm" "example" { | ||
host = "http://example.com:8080" | ||
filter { | ||
field_name = "name" | ||
value = "exampe-vm" | ||
} | ||
} | ||
``` | ||
|
||
<!-- schema generated by tfplugindocs --> | ||
## Schema | ||
|
||
### Required | ||
|
||
- `host` (String) | ||
|
||
### Optional | ||
|
||
- `authenticator` (Block, Optional) Authenticator block, this is used to authenticate with the Parallels Desktop API, if empty it will try to use the root password (see [below for nested schema](#nestedblock--authenticator)) | ||
- `filter` (Block, Optional) Filter block, this is used to filter data sources (see [below for nested schema](#nestedblock--filter)) | ||
|
||
### Read-Only | ||
|
||
- `machines` (Attributes List) (see [below for nested schema](#nestedatt--machines)) | ||
|
||
<a id="nestedblock--authenticator"></a> | ||
### Nested Schema for `authenticator` | ||
|
||
Optional: | ||
|
||
- `api_key` (String, Sensitive) Parallels desktop API API Key | ||
- `password` (String, Sensitive) Parallels desktop API Password | ||
- `username` (String) Parallels desktop API Username | ||
|
||
|
||
<a id="nestedblock--filter"></a> | ||
### Nested Schema for `filter` | ||
|
||
Required: | ||
|
||
- `field_name` (String) The field name of the datasource where you want to filter. | ||
- `value` (String) The value you want to filter, this can be a regular expression. | ||
|
||
Optional: | ||
|
||
- `case_insensitive` (Boolean) Case insensitive, if true the filter will be case insensitive. | ||
|
||
|
||
<a id="nestedatt--machines"></a> | ||
### Nested Schema for `machines` | ||
|
||
Read-Only: | ||
|
||
- `description` (String) | ||
- `home` (String) | ||
- `host_ip` (String) | ||
- `id` (String) | ||
- `name` (String) | ||
- `os_type` (String) | ||
- `state` (String) |
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,26 +1,31 @@ | ||
--- | ||
# generated by https://github.com/hashicorp/terraform-plugin-docs | ||
page_title: "scaffolding-framework Provider" | ||
page_title: "parallels-desktop Provider" | ||
subcategory: "" | ||
description: |- | ||
Parallels Desktop provider | ||
--- | ||
|
||
# scaffolding-framework Provider | ||
|
||
# parallels-desktop Provider | ||
|
||
Parallels Desktop provider | ||
|
||
## Example Usage | ||
|
||
```terraform | ||
provider "scaffolding" { | ||
# example configuration here | ||
provider "parallels-desktop" { | ||
license = "xxxx-xxxx-xxxx-xxxx" | ||
} | ||
``` | ||
|
||
<!-- schema generated by tfplugindocs --> | ||
## Schema | ||
|
||
### Required | ||
|
||
- `license` (String, Sensitive) Parallels Desktop Pro or Business license | ||
|
||
### Optional | ||
|
||
- `endpoint` (String) Example provider attribute | ||
- `my_account_password` (String, Sensitive) Parallels Desktop My Account password | ||
- `my_account_user` (String) Parallels Desktop My Account user |
Oops, something went wrong.