Skip to content

Commit

Permalink
Upgrade to latest version of bridged TF provider.
Browse files Browse the repository at this point in the history
  • Loading branch information
wparad committed May 31, 2023
1 parent 5ad27ec commit 828349a
Show file tree
Hide file tree
Showing 4 changed files with 12 additions and 12 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,7 @@ dotnet add package Pulumi.Authress
The following configuration points are available for the `Authress` provider:

- `authress:accessKey` - The access key for the Authress API. Should be [configured by your CI/CD](https://authress.io/knowledge-base/docs/category/cicd) automatically. Or it can be overridden directly here. Do not commit this plaintext value to your source code.
- `authress:customDomain` - Your Authress custom domain. [Configure a custom domain for your Authress account](https://authress.io/app/#/settings?focus=domain) or use [provided domain](https://authress.io/app/#/api?route=overview).
- `authress:customDomain` - Your Authress custom domain. [Configure a custom domain for your Authress account](https://authress.io/app/#/settings?focus=domain) or use the [provided domain](https://authress.io/app/#/api?route=overview).

## Reference Examples

Expand Down
12 changes: 6 additions & 6 deletions provider/cmd/pulumi-resource-authress/schema.json
Original file line number Diff line number Diff line change
Expand Up @@ -64,12 +64,12 @@
"variables": {
"accessKey": {
"type": "string",
"description": "The access key for the Authress API. Should be [configured by your\nCI/CD](https://authress.io/knowledge-base/docs/category/cicd) for more information.\n",
"description": "The access key for the Authress API. Should be [configured by your\nCI/CD](https://authress.io/knowledge-base/docs/category/cicd) automatically.\n",
"secret": true
},
"customDomain": {
"type": "string",
"description": "Your Authress custom domain. [Configured a custom domain for Account](https://authress.io/app/#/settings?focus=domain)\nor use [provided domain](https://authress.io/app/#/api?route=overview).\n"
"description": "Your Authress custom domain. [Configure a custom domain for Authress\naccount](https://authress.io/app/#/settings?focus=domain) or use the [provided\ndomain](https://authress.io/app/#/api?route=overview).\n"
}
},
"defaults": [
Expand Down Expand Up @@ -106,12 +106,12 @@
"properties": {
"accessKey": {
"type": "string",
"description": "The access key for the Authress API. Should be [configured by your\nCI/CD](https://authress.io/knowledge-base/docs/category/cicd) for more information.\n",
"description": "The access key for the Authress API. Should be [configured by your\nCI/CD](https://authress.io/knowledge-base/docs/category/cicd) automatically.\n",
"secret": true
},
"customDomain": {
"type": "string",
"description": "Your Authress custom domain. [Configured a custom domain for Account](https://authress.io/app/#/settings?focus=domain)\nor use [provided domain](https://authress.io/app/#/api?route=overview).\n"
"description": "Your Authress custom domain. [Configure a custom domain for Authress\naccount](https://authress.io/app/#/settings?focus=domain) or use the [provided\ndomain](https://authress.io/app/#/api?route=overview).\n"
}
},
"required": [
Expand All @@ -120,12 +120,12 @@
"inputProperties": {
"accessKey": {
"type": "string",
"description": "The access key for the Authress API. Should be [configured by your\nCI/CD](https://authress.io/knowledge-base/docs/category/cicd) for more information.\n",
"description": "The access key for the Authress API. Should be [configured by your\nCI/CD](https://authress.io/knowledge-base/docs/category/cicd) automatically.\n",
"secret": true
},
"customDomain": {
"type": "string",
"description": "Your Authress custom domain. [Configured a custom domain for Account](https://authress.io/app/#/settings?focus=domain)\nor use [provided domain](https://authress.io/app/#/api?route=overview).\n"
"description": "Your Authress custom domain. [Configure a custom domain for Authress\naccount](https://authress.io/app/#/settings?focus=domain) or use the [provided\ndomain](https://authress.io/app/#/api?route=overview).\n"
}
},
"requiredInputs": [
Expand Down
6 changes: 3 additions & 3 deletions provider/go.mod
Original file line number Diff line number Diff line change
Expand Up @@ -5,11 +5,9 @@ go 1.20
replace github.com/hashicorp/terraform-plugin-sdk/v2 => github.com/pulumi/terraform-plugin-sdk/v2 v2.0.0-20220824175045-450992f2f5b9

require (
github.com/authress/terraform-provider-authress v1.0.29
github.com/hashicorp/terraform-plugin-framework v1.1.1
github.com/authress/terraform-provider-authress v1.0.33
github.com/pulumi/pulumi-terraform-bridge/pf v0.10.0
github.com/pulumi/pulumi-terraform-bridge/v3 v3.48.0
github.com/pulumi/pulumi/sdk/v3 v3.68.0
)

require (
Expand Down Expand Up @@ -126,6 +124,7 @@ require (
github.com/hashicorp/hcl v1.0.0 // indirect
github.com/hashicorp/hcl/v2 v2.16.2 // indirect
github.com/hashicorp/hil v0.0.0-20190212132231-97b3a9cdfa93 // indirect
github.com/hashicorp/terraform-plugin-framework v1.1.1 // indirect
github.com/hashicorp/terraform-plugin-framework-validators v0.10.0 // indirect
github.com/hashicorp/terraform-plugin-go v0.14.3 // indirect
github.com/hashicorp/terraform-plugin-log v0.7.0 // indirect
Expand Down Expand Up @@ -178,6 +177,7 @@ require (
github.com/pulumi/pulumi-terraform-bridge/x/muxer v0.0.4 // indirect
github.com/pulumi/pulumi-yaml v1.1.1 // indirect
github.com/pulumi/pulumi/pkg/v3 v3.68.0 // indirect
github.com/pulumi/pulumi/sdk/v3 v3.68.0 // indirect
github.com/pulumi/schema-tools v0.1.2 // indirect
github.com/rivo/uniseg v0.2.0 // indirect
github.com/rogpeppe/go-internal v1.9.0 // indirect
Expand Down
4 changes: 2 additions & 2 deletions provider/go.sum
Original file line number Diff line number Diff line change
Expand Up @@ -376,8 +376,8 @@ github.com/aryann/difflib v0.0.0-20170710044230-e206f873d14a/go.mod h1:DAHtR1m6l
github.com/asaskevich/govalidator v0.0.0-20190424111038-f61b66f89f4a/go.mod h1:lB+ZfQJz7igIIfQNfa7Ml4HSf2uFQQRzpGGRXenZAgY=
github.com/asaskevich/govalidator v0.0.0-20200907205600-7a23bdc65eef/go.mod h1:WaHUgvxTVq04UNunO+XhnAqY/wQc+bxr74GqbsZ/Jqw=
github.com/asaskevich/govalidator v0.0.0-20210307081110-f21760c49a8d/go.mod h1:WaHUgvxTVq04UNunO+XhnAqY/wQc+bxr74GqbsZ/Jqw=
github.com/authress/terraform-provider-authress v1.0.29 h1:0f5K6f/DSha65C8sAfmFYGsG2MQ5qOKZG+W0MJZB2jE=
github.com/authress/terraform-provider-authress v1.0.29/go.mod h1:vp1OObpCt6/Lx2YfUWZYbRqgqQdw49pPzBq1zTvGDwE=
github.com/authress/terraform-provider-authress v1.0.33 h1:mnsVIjVCpc/ZfEyt3vMALjDPfyQjq2nO89lfnOI+3SA=
github.com/authress/terraform-provider-authress v1.0.33/go.mod h1:vp1OObpCt6/Lx2YfUWZYbRqgqQdw49pPzBq1zTvGDwE=
github.com/aws/aws-lambda-go v1.13.3/go.mod h1:4UKl9IzQMoD+QF79YdCuzCwp8VbmG4VAQwij/eHl5CU=
github.com/aws/aws-sdk-go v1.15.11/go.mod h1:mFuSZ37Z9YOHbQEwBWztmVzqXrEkub65tZoCYDt7FT0=
github.com/aws/aws-sdk-go v1.15.27/go.mod h1:mFuSZ37Z9YOHbQEwBWztmVzqXrEkub65tZoCYDt7FT0=
Expand Down

0 comments on commit 828349a

Please sign in to comment.