-
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.
- Loading branch information
Showing
10 changed files
with
132 additions
and
13 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,48 @@ | ||
--- | ||
# generated by https://github.com/hashicorp/terraform-plugin-docs | ||
page_title: "jambonz_account Data Source - jambonz" | ||
subcategory: "" | ||
description: |- | ||
--- | ||
|
||
# jambonz_account (Data Source) | ||
|
||
|
||
|
||
## Example Usage | ||
|
||
```terraform | ||
data "jambonz_account" "my_account" { | ||
account_sid = "b42f0f47-3972-4361-a2a4-e69cf0e1e8c3" | ||
} | ||
``` | ||
|
||
<!-- schema generated by tfplugindocs --> | ||
## Schema | ||
|
||
### Required | ||
|
||
- `account_sid` (String) | ||
|
||
### Optional | ||
|
||
- `device_calling_application_sid` (String) | ||
- `registration_hook` (Attributes) (see [below for nested schema](#nestedatt--registration_hook)) | ||
- `sip_realm` (String) | ||
|
||
### Read-Only | ||
|
||
- `name` (String) | ||
- `service_provider_sid` (String) | ||
|
||
<a id="nestedatt--registration_hook"></a> | ||
### Nested Schema for `registration_hook` | ||
|
||
Read-Only: | ||
|
||
- `method` (String) | ||
- `password` (String) | ||
- `url` (String) | ||
- `username` (String) | ||
- `webhook_sid` (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 |
---|---|---|
@@ -0,0 +1,28 @@ | ||
--- | ||
# generated by https://github.com/hashicorp/terraform-plugin-docs | ||
page_title: "jambonz Provider" | ||
subcategory: "" | ||
description: |- | ||
--- | ||
|
||
# jambonz Provider | ||
|
||
|
||
|
||
## Example Usage | ||
|
||
```terraform | ||
provider "jambonz" { | ||
endpoint = "https://jambonz.cloud/api/v1" | ||
api_key = "ff6dad71-6015-4a1a-af22-1dc97f71d3b1" | ||
} | ||
``` | ||
|
||
<!-- schema generated by tfplugindocs --> | ||
## Schema | ||
|
||
### Required | ||
|
||
- `api_key` (String) Jambonz API key. May also be provided via the JAMBONZ_API_KEY environment variable. | ||
- `endpoint` (String) Jambonz API endpoint. May also be provided via the JAMBONZ_ENDPOINT environment variable. |
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,39 @@ | ||
--- | ||
# generated by https://github.com/hashicorp/terraform-plugin-docs | ||
page_title: "jambonz_phone_number Resource - jambonz" | ||
subcategory: "" | ||
description: |- | ||
--- | ||
|
||
# jambonz_phone_number (Resource) | ||
|
||
|
||
|
||
## Example Usage | ||
|
||
```terraform | ||
resource "jambonz_phone_number" "test_num" { | ||
account_sid = "85358b52-4264-4ec4-9d76-d5c5971b1ed5" | ||
phone_number = "45111111111" | ||
voip_carrier_sid = "6cb36139-47bc-4a11-882d-80af726a022a" | ||
application_sid = "7e299ed5-53e5-4964-88d8-386a495b0c0c" | ||
} | ||
``` | ||
|
||
<!-- schema generated by tfplugindocs --> | ||
## Schema | ||
|
||
### Required | ||
|
||
- `account_sid` (String) | ||
- `phone_number` (String) | ||
- `voip_carrier_sid` (String) | ||
|
||
### Optional | ||
|
||
- `application_sid` (String) | ||
|
||
### Read-Only | ||
|
||
- `phone_number_sid` (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 |
---|---|---|
@@ -0,0 +1,3 @@ | ||
data "jambonz_account" "my_account" { | ||
account_sid = "b42f0f47-3972-4361-a2a4-e69cf0e1e8c3" | ||
} |
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 |
---|---|---|
@@ -1,3 +1,4 @@ | ||
provider "scaffolding" { | ||
# example configuration here | ||
provider "jambonz" { | ||
endpoint = "https://jambonz.cloud/api/v1" | ||
api_key = "ff6dad71-6015-4a1a-af22-1dc97f71d3b1" | ||
} |
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,6 @@ | ||
resource "jambonz_phone_number" "test_num" { | ||
account_sid = "85358b52-4264-4ec4-9d76-d5c5971b1ed5" | ||
phone_number = "45111111111" | ||
voip_carrier_sid = "6cb36139-47bc-4a11-882d-80af726a022a" | ||
application_sid = "7e299ed5-53e5-4964-88d8-386a495b0c0c" | ||
} |
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
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