@pulumi/auth0 3.39.0 → 3.40.0-alpha.1776436552
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/action.d.ts +2 -2
- package/action.js +2 -2
- package/branding.d.ts +1 -1
- package/branding.js +1 -1
- package/customDomainVerification.d.ts +2 -2
- package/customDomainVerification.js +2 -2
- package/package.json +2 -2
- package/rolePermission.d.ts +1 -1
- package/rolePermission.js +1 -1
package/action.d.ts
CHANGED
|
@@ -20,9 +20,9 @@ import * as outputs from "./types/output";
|
|
|
20
20
|
* import * as std from "@pulumi/std";
|
|
21
21
|
*
|
|
22
22
|
* const myAction = new auth0.Action("my_action", {
|
|
23
|
-
* name: std.
|
|
23
|
+
* name: std.format({
|
|
24
24
|
* input: "Test Action %s",
|
|
25
|
-
* args: [std.
|
|
25
|
+
* args: [std.timestamp({}).result],
|
|
26
26
|
* }).result,
|
|
27
27
|
* runtime: "node22",
|
|
28
28
|
* deploy: true,
|
package/action.js
CHANGED
|
@@ -24,9 +24,9 @@ const utilities = require("./utilities");
|
|
|
24
24
|
* import * as std from "@pulumi/std";
|
|
25
25
|
*
|
|
26
26
|
* const myAction = new auth0.Action("my_action", {
|
|
27
|
-
* name: std.
|
|
27
|
+
* name: std.format({
|
|
28
28
|
* input: "Test Action %s",
|
|
29
|
-
* args: [std.
|
|
29
|
+
* args: [std.timestamp({}).result],
|
|
30
30
|
* }).result,
|
|
31
31
|
* runtime: "node22",
|
|
32
32
|
* deploy: true,
|
package/branding.d.ts
CHANGED
package/branding.js
CHANGED
|
@@ -17,10 +17,10 @@ import * as pulumi from "@pulumi/pulumi";
|
|
|
17
17
|
* });
|
|
18
18
|
* const myDomainNameRecord = new digitalocean.index.Record("my_domain_name_record", {
|
|
19
19
|
* domain: "example.com",
|
|
20
|
-
* type: std.
|
|
20
|
+
* type: std.upper({
|
|
21
21
|
* input: myCustomDomain.verifications[0].methods?.[0]?.name,
|
|
22
22
|
* }).result,
|
|
23
|
-
* name: std.
|
|
23
|
+
* name: std.trimsuffix({
|
|
24
24
|
* input: myCustomDomain.verifications[0].methods?.[0]?.domain,
|
|
25
25
|
* suffix: ".example.com",
|
|
26
26
|
* }).result,
|
|
@@ -23,10 +23,10 @@ const utilities = require("./utilities");
|
|
|
23
23
|
* });
|
|
24
24
|
* const myDomainNameRecord = new digitalocean.index.Record("my_domain_name_record", {
|
|
25
25
|
* domain: "example.com",
|
|
26
|
-
* type: std.
|
|
26
|
+
* type: std.upper({
|
|
27
27
|
* input: myCustomDomain.verifications[0].methods?.[0]?.name,
|
|
28
28
|
* }).result,
|
|
29
|
-
* name: std.
|
|
29
|
+
* name: std.trimsuffix({
|
|
30
30
|
* input: myCustomDomain.verifications[0].methods?.[0]?.domain,
|
|
31
31
|
* suffix: ".example.com",
|
|
32
32
|
* }).result,
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@pulumi/auth0",
|
|
3
|
-
"version": "3.
|
|
3
|
+
"version": "3.40.0-alpha.1776436552",
|
|
4
4
|
"description": "A Pulumi package for creating and managing auth0 cloud resources.",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"pulumi",
|
|
@@ -23,6 +23,6 @@
|
|
|
23
23
|
"pulumi": {
|
|
24
24
|
"resource": true,
|
|
25
25
|
"name": "auth0",
|
|
26
|
-
"version": "3.
|
|
26
|
+
"version": "3.40.0-alpha.1776436552"
|
|
27
27
|
}
|
|
28
28
|
}
|
package/rolePermission.d.ts
CHANGED
|
@@ -38,7 +38,7 @@ import * as pulumi from "@pulumi/pulumi";
|
|
|
38
38
|
* const myRole = new auth0.Role("my_role", {name: "My Role"});
|
|
39
39
|
* const scopesList = resourceServerScopes.scopes.apply(scopes => scopes.map(scope => (scope.name)));
|
|
40
40
|
* const myRolePerm: auth0.RolePermission[] = [];
|
|
41
|
-
* for (const range = {value: 0}; range.value < std.
|
|
41
|
+
* for (const range = {value: 0}; range.value < std.toset({
|
|
42
42
|
* input: scopesList,
|
|
43
43
|
* }).result; range.value++) {
|
|
44
44
|
* myRolePerm.push(new auth0.RolePermission(`my_role_perm-${range.value}`, {
|
package/rolePermission.js
CHANGED
|
@@ -44,7 +44,7 @@ const utilities = require("./utilities");
|
|
|
44
44
|
* const myRole = new auth0.Role("my_role", {name: "My Role"});
|
|
45
45
|
* const scopesList = resourceServerScopes.scopes.apply(scopes => scopes.map(scope => (scope.name)));
|
|
46
46
|
* const myRolePerm: auth0.RolePermission[] = [];
|
|
47
|
-
* for (const range = {value: 0}; range.value < std.
|
|
47
|
+
* for (const range = {value: 0}; range.value < std.toset({
|
|
48
48
|
* input: scopesList,
|
|
49
49
|
* }).result; range.value++) {
|
|
50
50
|
* myRolePerm.push(new auth0.RolePermission(`my_role_perm-${range.value}`, {
|