-
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 #32 from common-fate/add-terraform-output
Add Terraform Output resource
- Loading branch information
Showing
13 changed files
with
371 additions
and
213 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,26 @@ | ||
--- | ||
# generated by https://github.com/hashicorp/terraform-plugin-docs | ||
page_title: "deploymeta_deployment Data Source - deploymeta" | ||
subcategory: "" | ||
description: |- | ||
Metadata about the current Common Fate deployment. | ||
--- | ||
|
||
# deploymeta_deployment (Data Source) | ||
|
||
Metadata about the current Common Fate deployment. | ||
|
||
## Example Usage | ||
|
||
```terraform | ||
data "deploymeta_deployment" "this" {} | ||
``` | ||
|
||
<!-- schema generated by tfplugindocs --> | ||
## Schema | ||
|
||
### Read-Only | ||
|
||
- `default_subdomain` (String) The default DNS subdomain associated with the deployment | ||
- `dns_zone_name` (String) The default DNS zone name associated with the deployment | ||
- `id` (String) The deployment ID |
This file was deleted.
Oops, something went wrong.
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,26 +1,50 @@ | ||
--- | ||
# generated by https://github.com/hashicorp/terraform-plugin-docs | ||
page_title: "scaffolding Provider" | ||
page_title: "deploymeta Provider" | ||
subcategory: "" | ||
description: |- | ||
--- | ||
|
||
# scaffolding Provider | ||
# deploymeta Provider | ||
|
||
|
||
|
||
## Example Usage | ||
|
||
```terraform | ||
provider "scaffolding" { | ||
terraform { | ||
required_providers { | ||
commonfatedeployment = { | ||
source = "common-fate/deploymeta" | ||
version = "0.1.0" | ||
} | ||
} | ||
} | ||
provider "deploymeta" { | ||
# example configuration here | ||
deployment_name = "dev" | ||
licence_key = "XXX" | ||
} | ||
data "deploymeta_deployment" "this" {} | ||
output "deployment_id" { | ||
value = data.deploymeta_deployment.this.id | ||
} | ||
# resource "commonfatedeployment_monitoring_write_token" "main" {} | ||
``` | ||
|
||
<!-- schema generated by tfplugindocs --> | ||
## Schema | ||
|
||
### Required | ||
|
||
- `licence_key` (String) The Common Fate licence key. | ||
|
||
### Optional | ||
|
||
- `endpoint` (String) Example provider attribute | ||
- `base_url` (String) The Common Fate Factory base URL. Defaults to https://factory.commonfate.io. |
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,27 @@ | ||
--- | ||
# generated by https://github.com/hashicorp/terraform-plugin-docs | ||
page_title: "deploymeta_dns_record Resource - deploymeta" | ||
subcategory: "" | ||
description: |- | ||
Registers DNS records for a Common Fate deployment. | ||
--- | ||
|
||
# deploymeta_dns_record (Resource) | ||
|
||
Registers DNS records for a Common Fate deployment. | ||
|
||
|
||
|
||
<!-- schema generated by tfplugindocs --> | ||
## Schema | ||
|
||
### Required | ||
|
||
- `name` (String) The DNS record name | ||
- `type` (String) The DNS record type. Must be one of ['TXT', 'CNAME'] | ||
- `values` (Set of String) The DNS record values | ||
- `zone_name` (String) The DNS zone name | ||
|
||
### Read-Only | ||
|
||
- `id` (String) The DNS record ID |
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: "deploymeta_terraform_output Resource - deploymeta" | ||
subcategory: "" | ||
description: |- | ||
Registers Terraform outputs for a Common Fate deployment. | ||
--- | ||
|
||
# deploymeta_terraform_output (Resource) | ||
|
||
Registers Terraform outputs for a Common Fate deployment. | ||
|
||
|
||
|
||
<!-- schema generated by tfplugindocs --> | ||
## Schema | ||
|
||
### Required | ||
|
||
- `cli_client_id` (String) The CLI client ID | ||
- `cognito_user_pool_id` (String) The Cognito user pool ID | ||
- `dns_cname_record_for_app_domain` (String) The DNS CNAME record for the app domain | ||
- `dns_cname_record_for_auth_domain` (String) The DNS CNAME record for the auth domain | ||
- `provisioner_client_id` (String) The Provisioner client ID | ||
- `read_only_client_id` (String) The Read-Only client ID | ||
- `saml_sso_acs_url` (String) The SAML SSO ACS URL | ||
- `saml_sso_entity_id` (String) The SAML SSO Entity ID | ||
- `terraform_client_id` (String) The Terraform client ID | ||
- `vpc_id` (String) The VPC ID | ||
- `web_client_id` (String) The web console client ID |
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.