@pulumi/consul 3.6.0-alpha.1648762278 → 3.6.0
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/aclAuthMethod.d.ts +12 -0
- package/aclAuthMethod.js +2 -0
- package/aclAuthMethod.js.map +1 -1
- package/aclBindingRule.d.ts +24 -24
- package/aclBindingRule.js +2 -0
- package/aclBindingRule.js.map +1 -1
- package/aclPolicy.d.ts +12 -0
- package/aclPolicy.js +2 -0
- package/aclPolicy.js.map +1 -1
- package/aclRole.d.ts +12 -0
- package/aclRole.js +2 -0
- package/aclRole.js.map +1 -1
- package/aclToken.d.ts +12 -0
- package/aclToken.js +2 -0
- package/aclToken.js.map +1 -1
- package/adminPartition.d.ts +84 -0
- package/adminPartition.js +75 -0
- package/adminPartition.js.map +1 -0
- package/configEntry.d.ts +47 -0
- package/configEntry.js +37 -0
- package/configEntry.js.map +1 -1
- package/getAclAuthMethod.d.ts +9 -0
- package/getAclAuthMethod.js +1 -0
- package/getAclAuthMethod.js.map +1 -1
- package/getAclPolicy.d.ts +8 -23
- package/getAclPolicy.js +1 -3
- package/getAclPolicy.js.map +1 -1
- package/getAclRole.d.ts +9 -0
- package/getAclRole.js +1 -0
- package/getAclRole.js.map +1 -1
- package/getAclToken.d.ts +9 -0
- package/getAclToken.js +1 -0
- package/getAclToken.js.map +1 -1
- package/getDatacenters.d.ts +21 -0
- package/getDatacenters.js +20 -0
- package/getDatacenters.js.map +1 -0
- package/getKeyPrefix.d.ts +11 -2
- package/getKeyPrefix.js +1 -0
- package/getKeyPrefix.js.map +1 -1
- package/getKeys.d.ts +9 -0
- package/getKeys.js +1 -0
- package/getKeys.js.map +1 -1
- package/index.d.ts +2 -0
- package/index.js +6 -0
- package/index.js.map +1 -1
- package/keyPrefix.d.ts +12 -0
- package/keyPrefix.js +2 -0
- package/keyPrefix.js.map +1 -1
- package/keys.d.ts +12 -0
- package/keys.js +2 -0
- package/keys.js.map +1 -1
- package/namespace.d.ts +21 -18
- package/namespace.js +2 -0
- package/namespace.js.map +1 -1
- package/node.d.ts +21 -18
- package/node.js +2 -0
- package/node.js.map +1 -1
- package/package.json +2 -2
- package/package.json.dev +2 -2
- package/service.d.ts +12 -0
- package/service.js +2 -0
- package/service.js.map +1 -1
- package/types/input.d.ts +12 -0
- package/types/output.d.ts +6 -0
package/aclAuthMethod.d.ts
CHANGED
|
@@ -99,6 +99,10 @@ export declare class AclAuthMethod extends pulumi.CustomResource {
|
|
|
99
99
|
* which namespace tokens created via this auth method will be created within.
|
|
100
100
|
*/
|
|
101
101
|
readonly namespaceRules: pulumi.Output<outputs.AclAuthMethodNamespaceRule[] | undefined>;
|
|
102
|
+
/**
|
|
103
|
+
* The partition the ACL auth method is associated with.
|
|
104
|
+
*/
|
|
105
|
+
readonly partition: pulumi.Output<string | undefined>;
|
|
102
106
|
/**
|
|
103
107
|
* The kind of token that this auth method
|
|
104
108
|
* produces. This can be either 'local' or 'global'.
|
|
@@ -162,6 +166,10 @@ export interface AclAuthMethodState {
|
|
|
162
166
|
* which namespace tokens created via this auth method will be created within.
|
|
163
167
|
*/
|
|
164
168
|
namespaceRules?: pulumi.Input<pulumi.Input<inputs.AclAuthMethodNamespaceRule>[]>;
|
|
169
|
+
/**
|
|
170
|
+
* The partition the ACL auth method is associated with.
|
|
171
|
+
*/
|
|
172
|
+
partition?: pulumi.Input<string>;
|
|
165
173
|
/**
|
|
166
174
|
* The kind of token that this auth method
|
|
167
175
|
* produces. This can be either 'local' or 'global'.
|
|
@@ -217,6 +225,10 @@ export interface AclAuthMethodArgs {
|
|
|
217
225
|
* which namespace tokens created via this auth method will be created within.
|
|
218
226
|
*/
|
|
219
227
|
namespaceRules?: pulumi.Input<pulumi.Input<inputs.AclAuthMethodNamespaceRule>[]>;
|
|
228
|
+
/**
|
|
229
|
+
* The partition the ACL auth method is associated with.
|
|
230
|
+
*/
|
|
231
|
+
partition?: pulumi.Input<string>;
|
|
220
232
|
/**
|
|
221
233
|
* The kind of token that this auth method
|
|
222
234
|
* produces. This can be either 'local' or 'global'.
|
package/aclAuthMethod.js
CHANGED
|
@@ -61,6 +61,7 @@ class AclAuthMethod extends pulumi.CustomResource {
|
|
|
61
61
|
resourceInputs["name"] = state ? state.name : undefined;
|
|
62
62
|
resourceInputs["namespace"] = state ? state.namespace : undefined;
|
|
63
63
|
resourceInputs["namespaceRules"] = state ? state.namespaceRules : undefined;
|
|
64
|
+
resourceInputs["partition"] = state ? state.partition : undefined;
|
|
64
65
|
resourceInputs["tokenLocality"] = state ? state.tokenLocality : undefined;
|
|
65
66
|
resourceInputs["type"] = state ? state.type : undefined;
|
|
66
67
|
}
|
|
@@ -77,6 +78,7 @@ class AclAuthMethod extends pulumi.CustomResource {
|
|
|
77
78
|
resourceInputs["name"] = args ? args.name : undefined;
|
|
78
79
|
resourceInputs["namespace"] = args ? args.namespace : undefined;
|
|
79
80
|
resourceInputs["namespaceRules"] = args ? args.namespaceRules : undefined;
|
|
81
|
+
resourceInputs["partition"] = args ? args.partition : undefined;
|
|
80
82
|
resourceInputs["tokenLocality"] = args ? args.tokenLocality : undefined;
|
|
81
83
|
resourceInputs["type"] = args ? args.type : undefined;
|
|
82
84
|
}
|
package/aclAuthMethod.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"aclAuthMethod.js","sourceRoot":"","sources":["../aclAuthMethod.ts"],"names":[],"mappings":";AAAA,wFAAwF;AACxF,iFAAiF;;;AAEjF,yCAAyC;AAEzC,yCAAyC;AAEzC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;GAyCG;AACH,MAAa,aAAc,SAAQ,MAAM,CAAC,cAAc;
|
|
1
|
+
{"version":3,"file":"aclAuthMethod.js","sourceRoot":"","sources":["../aclAuthMethod.ts"],"names":[],"mappings":"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"}
|
package/aclBindingRule.d.ts
CHANGED
|
@@ -54,23 +54,23 @@ export declare class AclBindingRule extends pulumi.CustomResource {
|
|
|
54
54
|
*/
|
|
55
55
|
readonly bindName: pulumi.Output<string>;
|
|
56
56
|
/**
|
|
57
|
-
* Specifies the way the binding rule affects a token
|
|
58
|
-
* created at login.
|
|
57
|
+
* Specifies the way the binding rule affects a token created at login.
|
|
59
58
|
*/
|
|
60
59
|
readonly bindType: pulumi.Output<string>;
|
|
61
60
|
/**
|
|
62
|
-
* A free form human readable description of the
|
|
63
|
-
* binding rule.
|
|
61
|
+
* A free form human readable description of the binding rule.
|
|
64
62
|
*/
|
|
65
63
|
readonly description: pulumi.Output<string | undefined>;
|
|
66
64
|
/**
|
|
67
|
-
* The namespace to create the binding
|
|
68
|
-
* rule within.
|
|
65
|
+
* The namespace to create the binding rule within.
|
|
69
66
|
*/
|
|
70
67
|
readonly namespace: pulumi.Output<string | undefined>;
|
|
71
68
|
/**
|
|
72
|
-
* The
|
|
73
|
-
|
|
69
|
+
* The partition the ACL binding rule is associated with.
|
|
70
|
+
*/
|
|
71
|
+
readonly partition: pulumi.Output<string | undefined>;
|
|
72
|
+
/**
|
|
73
|
+
* The expression used to math this rule against valid identities returned from an auth method validation.
|
|
74
74
|
*/
|
|
75
75
|
readonly selector: pulumi.Output<string | undefined>;
|
|
76
76
|
/**
|
|
@@ -95,23 +95,23 @@ export interface AclBindingRuleState {
|
|
|
95
95
|
*/
|
|
96
96
|
bindName?: pulumi.Input<string>;
|
|
97
97
|
/**
|
|
98
|
-
* Specifies the way the binding rule affects a token
|
|
99
|
-
* created at login.
|
|
98
|
+
* Specifies the way the binding rule affects a token created at login.
|
|
100
99
|
*/
|
|
101
100
|
bindType?: pulumi.Input<string>;
|
|
102
101
|
/**
|
|
103
|
-
* A free form human readable description of the
|
|
104
|
-
* binding rule.
|
|
102
|
+
* A free form human readable description of the binding rule.
|
|
105
103
|
*/
|
|
106
104
|
description?: pulumi.Input<string>;
|
|
107
105
|
/**
|
|
108
|
-
* The namespace to create the binding
|
|
109
|
-
* rule within.
|
|
106
|
+
* The namespace to create the binding rule within.
|
|
110
107
|
*/
|
|
111
108
|
namespace?: pulumi.Input<string>;
|
|
112
109
|
/**
|
|
113
|
-
* The
|
|
114
|
-
|
|
110
|
+
* The partition the ACL binding rule is associated with.
|
|
111
|
+
*/
|
|
112
|
+
partition?: pulumi.Input<string>;
|
|
113
|
+
/**
|
|
114
|
+
* The expression used to math this rule against valid identities returned from an auth method validation.
|
|
115
115
|
*/
|
|
116
116
|
selector?: pulumi.Input<string>;
|
|
117
117
|
}
|
|
@@ -128,23 +128,23 @@ export interface AclBindingRuleArgs {
|
|
|
128
128
|
*/
|
|
129
129
|
bindName: pulumi.Input<string>;
|
|
130
130
|
/**
|
|
131
|
-
* Specifies the way the binding rule affects a token
|
|
132
|
-
* created at login.
|
|
131
|
+
* Specifies the way the binding rule affects a token created at login.
|
|
133
132
|
*/
|
|
134
133
|
bindType: pulumi.Input<string>;
|
|
135
134
|
/**
|
|
136
|
-
* A free form human readable description of the
|
|
137
|
-
* binding rule.
|
|
135
|
+
* A free form human readable description of the binding rule.
|
|
138
136
|
*/
|
|
139
137
|
description?: pulumi.Input<string>;
|
|
140
138
|
/**
|
|
141
|
-
* The namespace to create the binding
|
|
142
|
-
* rule within.
|
|
139
|
+
* The namespace to create the binding rule within.
|
|
143
140
|
*/
|
|
144
141
|
namespace?: pulumi.Input<string>;
|
|
145
142
|
/**
|
|
146
|
-
* The
|
|
147
|
-
|
|
143
|
+
* The partition the ACL binding rule is associated with.
|
|
144
|
+
*/
|
|
145
|
+
partition?: pulumi.Input<string>;
|
|
146
|
+
/**
|
|
147
|
+
* The expression used to math this rule against valid identities returned from an auth method validation.
|
|
148
148
|
*/
|
|
149
149
|
selector?: pulumi.Input<string>;
|
|
150
150
|
}
|
package/aclBindingRule.js
CHANGED
|
@@ -46,6 +46,7 @@ class AclBindingRule extends pulumi.CustomResource {
|
|
|
46
46
|
resourceInputs["bindType"] = state ? state.bindType : undefined;
|
|
47
47
|
resourceInputs["description"] = state ? state.description : undefined;
|
|
48
48
|
resourceInputs["namespace"] = state ? state.namespace : undefined;
|
|
49
|
+
resourceInputs["partition"] = state ? state.partition : undefined;
|
|
49
50
|
resourceInputs["selector"] = state ? state.selector : undefined;
|
|
50
51
|
}
|
|
51
52
|
else {
|
|
@@ -64,6 +65,7 @@ class AclBindingRule extends pulumi.CustomResource {
|
|
|
64
65
|
resourceInputs["bindType"] = args ? args.bindType : undefined;
|
|
65
66
|
resourceInputs["description"] = args ? args.description : undefined;
|
|
66
67
|
resourceInputs["namespace"] = args ? args.namespace : undefined;
|
|
68
|
+
resourceInputs["partition"] = args ? args.partition : undefined;
|
|
67
69
|
resourceInputs["selector"] = args ? args.selector : undefined;
|
|
68
70
|
}
|
|
69
71
|
opts = pulumi.mergeOptions(utilities.resourceOptsDefaults(), opts);
|
package/aclBindingRule.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"aclBindingRule.js","sourceRoot":"","sources":["../aclBindingRule.ts"],"names":[],"mappings":"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
|
|
1
|
+
{"version":3,"file":"aclBindingRule.js","sourceRoot":"","sources":["../aclBindingRule.ts"],"names":[],"mappings":";AAAA,wFAAwF;AACxF,iFAAiF;;;AAEjF,yCAAyC;AACzC,yCAAyC;AAEzC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;GA6BG;AACH,MAAa,cAAe,SAAQ,MAAM,CAAC,cAAc;IAiErD,YAAY,IAAY,EAAE,WAAsD,EAAE,IAAmC;QACjH,IAAI,cAAc,GAAkB,EAAE,CAAC;QACvC,IAAI,GAAG,IAAI,IAAI,EAAE,CAAC;QAClB,IAAI,IAAI,CAAC,EAAE,EAAE;YACT,MAAM,KAAK,GAAG,WAA8C,CAAC;YAC7D,cAAc,CAAC,YAAY,CAAC,GAAG,KAAK,CAAC,CAAC,CAAC,KAAK,CAAC,UAAU,CAAC,CAAC,CAAC,SAAS,CAAC;YACpE,cAAc,CAAC,UAAU,CAAC,GAAG,KAAK,CAAC,CAAC,CAAC,KAAK,CAAC,QAAQ,CAAC,CAAC,CAAC,SAAS,CAAC;YAChE,cAAc,CAAC,UAAU,CAAC,GAAG,KAAK,CAAC,CAAC,CAAC,KAAK,CAAC,QAAQ,CAAC,CAAC,CAAC,SAAS,CAAC;YAChE,cAAc,CAAC,aAAa,CAAC,GAAG,KAAK,CAAC,CAAC,CAAC,KAAK,CAAC,WAAW,CAAC,CAAC,CAAC,SAAS,CAAC;YACtE,cAAc,CAAC,WAAW,CAAC,GAAG,KAAK,CAAC,CAAC,CAAC,KAAK,CAAC,SAAS,CAAC,CAAC,CAAC,SAAS,CAAC;YAClE,cAAc,CAAC,WAAW,CAAC,GAAG,KAAK,CAAC,CAAC,CAAC,KAAK,CAAC,SAAS,CAAC,CAAC,CAAC,SAAS,CAAC;YAClE,cAAc,CAAC,UAAU,CAAC,GAAG,KAAK,CAAC,CAAC,CAAC,KAAK,CAAC,QAAQ,CAAC,CAAC,CAAC,SAAS,CAAC;SACnE;aAAM;YACH,MAAM,IAAI,GAAG,WAA6C,CAAC;YAC3D,IAAI,CAAC,CAAC,IAAI,IAAI,IAAI,CAAC,UAAU,KAAK,SAAS,CAAC,IAAI,CAAC,IAAI,CAAC,GAAG,EAAE;gBACvD,MAAM,IAAI,KAAK,CAAC,wCAAwC,CAAC,CAAC;aAC7D;YACD,IAAI,CAAC,CAAC,IAAI,IAAI,IAAI,CAAC,QAAQ,KAAK,SAAS,CAAC,IAAI,CAAC,IAAI,CAAC,GAAG,EAAE;gBACrD,MAAM,IAAI,KAAK,CAAC,sCAAsC,CAAC,CAAC;aAC3D;YACD,IAAI,CAAC,CAAC,IAAI,IAAI,IAAI,CAAC,QAAQ,KAAK,SAAS,CAAC,IAAI,CAAC,IAAI,CAAC,GAAG,EAAE;gBACrD,MAAM,IAAI,KAAK,CAAC,sCAAsC,CAAC,CAAC;aAC3D;YACD,cAAc,CAAC,YAAY,CAAC,GAAG,IAAI,CAAC,CAAC,CAAC,IAAI,CAAC,UAAU,CAAC,CAAC,CAAC,SAAS,CAAC;YAClE,cAAc,CAAC,UAAU,CAAC,GAAG,IAAI,CAAC,CAAC,CAAC,IAAI,CAAC,QAAQ,CAAC,CAAC,CAAC,SAAS,CAAC;YAC9D,cAAc,CAAC,UAAU,CAAC,GAAG,IAAI,CAAC,CAAC,CAAC,IAAI,CAAC,QAAQ,CAAC,CAAC,CAAC,SAAS,CAAC;YAC9D,cAAc,CAAC,aAAa,CAAC,GAAG,IAAI,CAAC,CAAC,CAAC,IAAI,CAAC,WAAW,CAAC,CAAC,CAAC,SAAS,CAAC;YACpE,cAAc,CAAC,WAAW,CAAC,GAAG,IAAI,CAAC,CAAC,CAAC,IAAI,CAAC,SAAS,CAAC,CAAC,CAAC,SAAS,CAAC;YAChE,cAAc,CAAC,WAAW,CAAC,GAAG,IAAI,CAAC,CAAC,CAAC,IAAI,CAAC,SAAS,CAAC,CAAC,CAAC,SAAS,CAAC;YAChE,cAAc,CAAC,UAAU,CAAC,GAAG,IAAI,CAAC,CAAC,CAAC,IAAI,CAAC,QAAQ,CAAC,CAAC,CAAC,SAAS,CAAC;SACjE;QACD,IAAI,GAAG,MAAM,CAAC,YAAY,CAAC,SAAS,CAAC,oBAAoB,EAAE,EAAE,IAAI,CAAC,CAAC;QACnE,KAAK,CAAC,cAAc,CAAC,YAAY,EAAE,IAAI,EAAE,cAAc,EAAE,IAAI,CAAC,CAAC;IACnE,CAAC;IAjGD;;;;;;;;OAQG;IACI,MAAM,CAAC,GAAG,CAAC,IAAY,EAAE,EAA2B,EAAE,KAA2B,EAAE,IAAmC;QACzH,OAAO,IAAI,cAAc,CAAC,IAAI,EAAO,KAAK,kCAAO,IAAI,KAAE,EAAE,EAAE,EAAE,IAAG,CAAC;IACrE,CAAC;IAKD;;;OAGG;IACI,MAAM,CAAC,UAAU,CAAC,GAAQ;QAC7B,IAAI,GAAG,KAAK,SAAS,IAAI,GAAG,KAAK,IAAI,EAAE;YACnC,OAAO,KAAK,CAAC;SAChB;QACD,OAAO,GAAG,CAAC,cAAc,CAAC,KAAK,cAAc,CAAC,YAAY,CAAC;IAC/D,CAAC;;AA1BL,wCAmGC;AArFG,gBAAgB;AACO,2BAAY,GAAG,4CAA4C,CAAC"}
|
package/aclPolicy.d.ts
CHANGED
|
@@ -57,6 +57,10 @@ export declare class AclPolicy extends pulumi.CustomResource {
|
|
|
57
57
|
* The namespace to create the policy within.
|
|
58
58
|
*/
|
|
59
59
|
readonly namespace: pulumi.Output<string | undefined>;
|
|
60
|
+
/**
|
|
61
|
+
* The partition the ACL policy is associated with.
|
|
62
|
+
*/
|
|
63
|
+
readonly partition: pulumi.Output<string | undefined>;
|
|
60
64
|
/**
|
|
61
65
|
* The rules of the policy.
|
|
62
66
|
*/
|
|
@@ -90,6 +94,10 @@ export interface AclPolicyState {
|
|
|
90
94
|
* The namespace to create the policy within.
|
|
91
95
|
*/
|
|
92
96
|
namespace?: pulumi.Input<string>;
|
|
97
|
+
/**
|
|
98
|
+
* The partition the ACL policy is associated with.
|
|
99
|
+
*/
|
|
100
|
+
partition?: pulumi.Input<string>;
|
|
93
101
|
/**
|
|
94
102
|
* The rules of the policy.
|
|
95
103
|
*/
|
|
@@ -115,6 +123,10 @@ export interface AclPolicyArgs {
|
|
|
115
123
|
* The namespace to create the policy within.
|
|
116
124
|
*/
|
|
117
125
|
namespace?: pulumi.Input<string>;
|
|
126
|
+
/**
|
|
127
|
+
* The partition the ACL policy is associated with.
|
|
128
|
+
*/
|
|
129
|
+
partition?: pulumi.Input<string>;
|
|
118
130
|
/**
|
|
119
131
|
* The rules of the policy.
|
|
120
132
|
*/
|
package/aclPolicy.js
CHANGED
|
@@ -41,6 +41,7 @@ class AclPolicy extends pulumi.CustomResource {
|
|
|
41
41
|
resourceInputs["description"] = state ? state.description : undefined;
|
|
42
42
|
resourceInputs["name"] = state ? state.name : undefined;
|
|
43
43
|
resourceInputs["namespace"] = state ? state.namespace : undefined;
|
|
44
|
+
resourceInputs["partition"] = state ? state.partition : undefined;
|
|
44
45
|
resourceInputs["rules"] = state ? state.rules : undefined;
|
|
45
46
|
}
|
|
46
47
|
else {
|
|
@@ -52,6 +53,7 @@ class AclPolicy extends pulumi.CustomResource {
|
|
|
52
53
|
resourceInputs["description"] = args ? args.description : undefined;
|
|
53
54
|
resourceInputs["name"] = args ? args.name : undefined;
|
|
54
55
|
resourceInputs["namespace"] = args ? args.namespace : undefined;
|
|
56
|
+
resourceInputs["partition"] = args ? args.partition : undefined;
|
|
55
57
|
resourceInputs["rules"] = args ? args.rules : undefined;
|
|
56
58
|
}
|
|
57
59
|
opts = pulumi.mergeOptions(utilities.resourceOptsDefaults(), opts);
|
package/aclPolicy.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"aclPolicy.js","sourceRoot":"","sources":["../aclPolicy.ts"],"names":[],"mappings":";AAAA,wFAAwF;AACxF,iFAAiF;;;AAEjF,yCAAyC;AACzC,yCAAyC;AAEzC;;;;;;;;;;;;;;;;;;;;;;;;;GAyBG;AACH,MAAa,SAAU,SAAQ,MAAM,CAAC,cAAc;
|
|
1
|
+
{"version":3,"file":"aclPolicy.js","sourceRoot":"","sources":["../aclPolicy.ts"],"names":[],"mappings":";AAAA,wFAAwF;AACxF,iFAAiF;;;AAEjF,yCAAyC;AACzC,yCAAyC;AAEzC;;;;;;;;;;;;;;;;;;;;;;;;;GAyBG;AACH,MAAa,SAAU,SAAQ,MAAM,CAAC,cAAc;IA6DhD,YAAY,IAAY,EAAE,WAA4C,EAAE,IAAmC;QACvG,IAAI,cAAc,GAAkB,EAAE,CAAC;QACvC,IAAI,GAAG,IAAI,IAAI,EAAE,CAAC;QAClB,IAAI,IAAI,CAAC,EAAE,EAAE;YACT,MAAM,KAAK,GAAG,WAAyC,CAAC;YACxD,cAAc,CAAC,aAAa,CAAC,GAAG,KAAK,CAAC,CAAC,CAAC,KAAK,CAAC,WAAW,CAAC,CAAC,CAAC,SAAS,CAAC;YACtE,cAAc,CAAC,aAAa,CAAC,GAAG,KAAK,CAAC,CAAC,CAAC,KAAK,CAAC,WAAW,CAAC,CAAC,CAAC,SAAS,CAAC;YACtE,cAAc,CAAC,MAAM,CAAC,GAAG,KAAK,CAAC,CAAC,CAAC,KAAK,CAAC,IAAI,CAAC,CAAC,CAAC,SAAS,CAAC;YACxD,cAAc,CAAC,WAAW,CAAC,GAAG,KAAK,CAAC,CAAC,CAAC,KAAK,CAAC,SAAS,CAAC,CAAC,CAAC,SAAS,CAAC;YAClE,cAAc,CAAC,WAAW,CAAC,GAAG,KAAK,CAAC,CAAC,CAAC,KAAK,CAAC,SAAS,CAAC,CAAC,CAAC,SAAS,CAAC;YAClE,cAAc,CAAC,OAAO,CAAC,GAAG,KAAK,CAAC,CAAC,CAAC,KAAK,CAAC,KAAK,CAAC,CAAC,CAAC,SAAS,CAAC;SAC7D;aAAM;YACH,MAAM,IAAI,GAAG,WAAwC,CAAC;YACtD,IAAI,CAAC,CAAC,IAAI,IAAI,IAAI,CAAC,KAAK,KAAK,SAAS,CAAC,IAAI,CAAC,IAAI,CAAC,GAAG,EAAE;gBAClD,MAAM,IAAI,KAAK,CAAC,mCAAmC,CAAC,CAAC;aACxD;YACD,cAAc,CAAC,aAAa,CAAC,GAAG,IAAI,CAAC,CAAC,CAAC,IAAI,CAAC,WAAW,CAAC,CAAC,CAAC,SAAS,CAAC;YACpE,cAAc,CAAC,aAAa,CAAC,GAAG,IAAI,CAAC,CAAC,CAAC,IAAI,CAAC,WAAW,CAAC,CAAC,CAAC,SAAS,CAAC;YACpE,cAAc,CAAC,MAAM,CAAC,GAAG,IAAI,CAAC,CAAC,CAAC,IAAI,CAAC,IAAI,CAAC,CAAC,CAAC,SAAS,CAAC;YACtD,cAAc,CAAC,WAAW,CAAC,GAAG,IAAI,CAAC,CAAC,CAAC,IAAI,CAAC,SAAS,CAAC,CAAC,CAAC,SAAS,CAAC;YAChE,cAAc,CAAC,WAAW,CAAC,GAAG,IAAI,CAAC,CAAC,CAAC,IAAI,CAAC,SAAS,CAAC,CAAC,CAAC,SAAS,CAAC;YAChE,cAAc,CAAC,OAAO,CAAC,GAAG,IAAI,CAAC,CAAC,CAAC,IAAI,CAAC,KAAK,CAAC,CAAC,CAAC,SAAS,CAAC;SAC3D;QACD,IAAI,GAAG,MAAM,CAAC,YAAY,CAAC,SAAS,CAAC,oBAAoB,EAAE,EAAE,IAAI,CAAC,CAAC;QACnE,KAAK,CAAC,SAAS,CAAC,YAAY,EAAE,IAAI,EAAE,cAAc,EAAE,IAAI,CAAC,CAAC;IAC9D,CAAC;IArFD;;;;;;;;OAQG;IACI,MAAM,CAAC,GAAG,CAAC,IAAY,EAAE,EAA2B,EAAE,KAAsB,EAAE,IAAmC;QACpH,OAAO,IAAI,SAAS,CAAC,IAAI,EAAO,KAAK,kCAAO,IAAI,KAAE,EAAE,EAAE,EAAE,IAAG,CAAC;IAChE,CAAC;IAKD;;;OAGG;IACI,MAAM,CAAC,UAAU,CAAC,GAAQ;QAC7B,IAAI,GAAG,KAAK,SAAS,IAAI,GAAG,KAAK,IAAI,EAAE;YACnC,OAAO,KAAK,CAAC;SAChB;QACD,OAAO,GAAG,CAAC,cAAc,CAAC,KAAK,SAAS,CAAC,YAAY,CAAC;IAC1D,CAAC;;AA1BL,8BAuFC;AAzEG,gBAAgB;AACO,sBAAY,GAAG,kCAAkC,CAAC"}
|
package/aclRole.d.ts
CHANGED
|
@@ -62,6 +62,10 @@ export declare class AclRole extends pulumi.CustomResource {
|
|
|
62
62
|
* The list of node identities that should be applied to the role.
|
|
63
63
|
*/
|
|
64
64
|
readonly nodeIdentities: pulumi.Output<outputs.AclRoleNodeIdentity[] | undefined>;
|
|
65
|
+
/**
|
|
66
|
+
* The partition the ACL role is associated with.
|
|
67
|
+
*/
|
|
68
|
+
readonly partition: pulumi.Output<string | undefined>;
|
|
65
69
|
/**
|
|
66
70
|
* The list of policies that should be applied to the role.
|
|
67
71
|
*/
|
|
@@ -99,6 +103,10 @@ export interface AclRoleState {
|
|
|
99
103
|
* The list of node identities that should be applied to the role.
|
|
100
104
|
*/
|
|
101
105
|
nodeIdentities?: pulumi.Input<pulumi.Input<inputs.AclRoleNodeIdentity>[]>;
|
|
106
|
+
/**
|
|
107
|
+
* The partition the ACL role is associated with.
|
|
108
|
+
*/
|
|
109
|
+
partition?: pulumi.Input<string>;
|
|
102
110
|
/**
|
|
103
111
|
* The list of policies that should be applied to the role.
|
|
104
112
|
*/
|
|
@@ -128,6 +136,10 @@ export interface AclRoleArgs {
|
|
|
128
136
|
* The list of node identities that should be applied to the role.
|
|
129
137
|
*/
|
|
130
138
|
nodeIdentities?: pulumi.Input<pulumi.Input<inputs.AclRoleNodeIdentity>[]>;
|
|
139
|
+
/**
|
|
140
|
+
* The partition the ACL role is associated with.
|
|
141
|
+
*/
|
|
142
|
+
partition?: pulumi.Input<string>;
|
|
131
143
|
/**
|
|
132
144
|
* The list of policies that should be applied to the role.
|
|
133
145
|
*/
|
package/aclRole.js
CHANGED
|
@@ -45,6 +45,7 @@ class AclRole extends pulumi.CustomResource {
|
|
|
45
45
|
resourceInputs["name"] = state ? state.name : undefined;
|
|
46
46
|
resourceInputs["namespace"] = state ? state.namespace : undefined;
|
|
47
47
|
resourceInputs["nodeIdentities"] = state ? state.nodeIdentities : undefined;
|
|
48
|
+
resourceInputs["partition"] = state ? state.partition : undefined;
|
|
48
49
|
resourceInputs["policies"] = state ? state.policies : undefined;
|
|
49
50
|
resourceInputs["serviceIdentities"] = state ? state.serviceIdentities : undefined;
|
|
50
51
|
}
|
|
@@ -54,6 +55,7 @@ class AclRole extends pulumi.CustomResource {
|
|
|
54
55
|
resourceInputs["name"] = args ? args.name : undefined;
|
|
55
56
|
resourceInputs["namespace"] = args ? args.namespace : undefined;
|
|
56
57
|
resourceInputs["nodeIdentities"] = args ? args.nodeIdentities : undefined;
|
|
58
|
+
resourceInputs["partition"] = args ? args.partition : undefined;
|
|
57
59
|
resourceInputs["policies"] = args ? args.policies : undefined;
|
|
58
60
|
resourceInputs["serviceIdentities"] = args ? args.serviceIdentities : undefined;
|
|
59
61
|
}
|
package/aclRole.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"aclRole.js","sourceRoot":"","sources":["../aclRole.ts"],"names":[],"mappings":";AAAA,wFAAwF;AACxF,iFAAiF;;;AAEjF,yCAAyC;AAEzC,yCAAyC;AAEzC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;GA6BG;AACH,MAAa,OAAQ,SAAQ,MAAM,CAAC,cAAc;
|
|
1
|
+
{"version":3,"file":"aclRole.js","sourceRoot":"","sources":["../aclRole.ts"],"names":[],"mappings":"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"}
|
package/aclToken.d.ts
CHANGED
|
@@ -76,6 +76,10 @@ export declare class AclToken extends pulumi.CustomResource {
|
|
|
76
76
|
* The list of node identities that should be applied to the token.
|
|
77
77
|
*/
|
|
78
78
|
readonly nodeIdentities: pulumi.Output<outputs.AclTokenNodeIdentity[] | undefined>;
|
|
79
|
+
/**
|
|
80
|
+
* The partition the ACL token is associated with.
|
|
81
|
+
*/
|
|
82
|
+
readonly partition: pulumi.Output<string | undefined>;
|
|
79
83
|
/**
|
|
80
84
|
* The list of policies attached to the token.
|
|
81
85
|
*/
|
|
@@ -126,6 +130,10 @@ export interface AclTokenState {
|
|
|
126
130
|
* The list of node identities that should be applied to the token.
|
|
127
131
|
*/
|
|
128
132
|
nodeIdentities?: pulumi.Input<pulumi.Input<inputs.AclTokenNodeIdentity>[]>;
|
|
133
|
+
/**
|
|
134
|
+
* The partition the ACL token is associated with.
|
|
135
|
+
*/
|
|
136
|
+
partition?: pulumi.Input<string>;
|
|
129
137
|
/**
|
|
130
138
|
* The list of policies attached to the token.
|
|
131
139
|
*/
|
|
@@ -168,6 +176,10 @@ export interface AclTokenArgs {
|
|
|
168
176
|
* The list of node identities that should be applied to the token.
|
|
169
177
|
*/
|
|
170
178
|
nodeIdentities?: pulumi.Input<pulumi.Input<inputs.AclTokenNodeIdentity>[]>;
|
|
179
|
+
/**
|
|
180
|
+
* The partition the ACL token is associated with.
|
|
181
|
+
*/
|
|
182
|
+
partition?: pulumi.Input<string>;
|
|
171
183
|
/**
|
|
172
184
|
* The list of policies attached to the token.
|
|
173
185
|
*/
|
package/aclToken.js
CHANGED
|
@@ -52,6 +52,7 @@ class AclToken extends pulumi.CustomResource {
|
|
|
52
52
|
resourceInputs["local"] = state ? state.local : undefined;
|
|
53
53
|
resourceInputs["namespace"] = state ? state.namespace : undefined;
|
|
54
54
|
resourceInputs["nodeIdentities"] = state ? state.nodeIdentities : undefined;
|
|
55
|
+
resourceInputs["partition"] = state ? state.partition : undefined;
|
|
55
56
|
resourceInputs["policies"] = state ? state.policies : undefined;
|
|
56
57
|
resourceInputs["roles"] = state ? state.roles : undefined;
|
|
57
58
|
resourceInputs["serviceIdentities"] = state ? state.serviceIdentities : undefined;
|
|
@@ -64,6 +65,7 @@ class AclToken extends pulumi.CustomResource {
|
|
|
64
65
|
resourceInputs["local"] = args ? args.local : undefined;
|
|
65
66
|
resourceInputs["namespace"] = args ? args.namespace : undefined;
|
|
66
67
|
resourceInputs["nodeIdentities"] = args ? args.nodeIdentities : undefined;
|
|
68
|
+
resourceInputs["partition"] = args ? args.partition : undefined;
|
|
67
69
|
resourceInputs["policies"] = args ? args.policies : undefined;
|
|
68
70
|
resourceInputs["roles"] = args ? args.roles : undefined;
|
|
69
71
|
resourceInputs["serviceIdentities"] = args ? args.serviceIdentities : undefined;
|
package/aclToken.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"aclToken.js","sourceRoot":"","sources":["../aclToken.ts"],"names":[],"mappings":";AAAA,wFAAwF;AACxF,iFAAiF;;;AAEjF,yCAAyC;AAEzC,yCAAyC;AAEzC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;GAkCG;AACH,MAAa,QAAS,SAAQ,MAAM,CAAC,cAAc;
|
|
1
|
+
{"version":3,"file":"aclToken.js","sourceRoot":"","sources":["../aclToken.ts"],"names":[],"mappings":"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"}
|
|
@@ -0,0 +1,84 @@
|
|
|
1
|
+
import * as pulumi from "@pulumi/pulumi";
|
|
2
|
+
/**
|
|
3
|
+
* > **NOTE:** This feature requires Consul Enterprise.
|
|
4
|
+
*
|
|
5
|
+
* The `consul.AdminPartition` resource manages [Consul Enterprise Admin Partitions](https://www.consul.io/docs/enterprise/admin-partitions).
|
|
6
|
+
*
|
|
7
|
+
* ## Example Usage
|
|
8
|
+
*
|
|
9
|
+
* ```typescript
|
|
10
|
+
* import * as pulumi from "@pulumi/pulumi";
|
|
11
|
+
* import * as consul from "@pulumi/consul";
|
|
12
|
+
*
|
|
13
|
+
* const naWest = new consul.AdminPartition("na_west", {
|
|
14
|
+
* description: "Partition for North America West",
|
|
15
|
+
* });
|
|
16
|
+
* ```
|
|
17
|
+
*
|
|
18
|
+
* ## Import
|
|
19
|
+
*
|
|
20
|
+
* `consul_admin_partition` can be imported
|
|
21
|
+
*
|
|
22
|
+
* ```sh
|
|
23
|
+
* $ pulumi import consul:index/adminPartition:AdminPartition na_west na-west
|
|
24
|
+
* ```
|
|
25
|
+
*/
|
|
26
|
+
export declare class AdminPartition extends pulumi.CustomResource {
|
|
27
|
+
/**
|
|
28
|
+
* Get an existing AdminPartition resource's state with the given name, ID, and optional extra
|
|
29
|
+
* properties used to qualify the lookup.
|
|
30
|
+
*
|
|
31
|
+
* @param name The _unique_ name of the resulting resource.
|
|
32
|
+
* @param id The _unique_ provider ID of the resource to lookup.
|
|
33
|
+
* @param state Any extra arguments used during the lookup.
|
|
34
|
+
* @param opts Optional settings to control the behavior of the CustomResource.
|
|
35
|
+
*/
|
|
36
|
+
static get(name: string, id: pulumi.Input<pulumi.ID>, state?: AdminPartitionState, opts?: pulumi.CustomResourceOptions): AdminPartition;
|
|
37
|
+
/**
|
|
38
|
+
* Returns true if the given object is an instance of AdminPartition. This is designed to work even
|
|
39
|
+
* when multiple copies of the Pulumi SDK have been loaded into the same process.
|
|
40
|
+
*/
|
|
41
|
+
static isInstance(obj: any): obj is AdminPartition;
|
|
42
|
+
/**
|
|
43
|
+
* Free form partition description.
|
|
44
|
+
*/
|
|
45
|
+
readonly description: pulumi.Output<string | undefined>;
|
|
46
|
+
/**
|
|
47
|
+
* The partition name. This must be a valid DNS hostname label.
|
|
48
|
+
*/
|
|
49
|
+
readonly name: pulumi.Output<string>;
|
|
50
|
+
/**
|
|
51
|
+
* Create a AdminPartition resource with the given unique name, arguments, and options.
|
|
52
|
+
*
|
|
53
|
+
* @param name The _unique_ name of the resource.
|
|
54
|
+
* @param args The arguments to use to populate this resource's properties.
|
|
55
|
+
* @param opts A bag of options that control this resource's behavior.
|
|
56
|
+
*/
|
|
57
|
+
constructor(name: string, args?: AdminPartitionArgs, opts?: pulumi.CustomResourceOptions);
|
|
58
|
+
}
|
|
59
|
+
/**
|
|
60
|
+
* Input properties used for looking up and filtering AdminPartition resources.
|
|
61
|
+
*/
|
|
62
|
+
export interface AdminPartitionState {
|
|
63
|
+
/**
|
|
64
|
+
* Free form partition description.
|
|
65
|
+
*/
|
|
66
|
+
description?: pulumi.Input<string>;
|
|
67
|
+
/**
|
|
68
|
+
* The partition name. This must be a valid DNS hostname label.
|
|
69
|
+
*/
|
|
70
|
+
name?: pulumi.Input<string>;
|
|
71
|
+
}
|
|
72
|
+
/**
|
|
73
|
+
* The set of arguments for constructing a AdminPartition resource.
|
|
74
|
+
*/
|
|
75
|
+
export interface AdminPartitionArgs {
|
|
76
|
+
/**
|
|
77
|
+
* Free form partition description.
|
|
78
|
+
*/
|
|
79
|
+
description?: pulumi.Input<string>;
|
|
80
|
+
/**
|
|
81
|
+
* The partition name. This must be a valid DNS hostname label.
|
|
82
|
+
*/
|
|
83
|
+
name?: pulumi.Input<string>;
|
|
84
|
+
}
|
|
@@ -0,0 +1,75 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
// *** WARNING: this file was generated by the Pulumi Terraform Bridge (tfgen) Tool. ***
|
|
3
|
+
// *** Do not edit by hand unless you're certain you know what you are doing! ***
|
|
4
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
5
|
+
exports.AdminPartition = void 0;
|
|
6
|
+
const pulumi = require("@pulumi/pulumi");
|
|
7
|
+
const utilities = require("./utilities");
|
|
8
|
+
/**
|
|
9
|
+
* > **NOTE:** This feature requires Consul Enterprise.
|
|
10
|
+
*
|
|
11
|
+
* The `consul.AdminPartition` resource manages [Consul Enterprise Admin Partitions](https://www.consul.io/docs/enterprise/admin-partitions).
|
|
12
|
+
*
|
|
13
|
+
* ## Example Usage
|
|
14
|
+
*
|
|
15
|
+
* ```typescript
|
|
16
|
+
* import * as pulumi from "@pulumi/pulumi";
|
|
17
|
+
* import * as consul from "@pulumi/consul";
|
|
18
|
+
*
|
|
19
|
+
* const naWest = new consul.AdminPartition("na_west", {
|
|
20
|
+
* description: "Partition for North America West",
|
|
21
|
+
* });
|
|
22
|
+
* ```
|
|
23
|
+
*
|
|
24
|
+
* ## Import
|
|
25
|
+
*
|
|
26
|
+
* `consul_admin_partition` can be imported
|
|
27
|
+
*
|
|
28
|
+
* ```sh
|
|
29
|
+
* $ pulumi import consul:index/adminPartition:AdminPartition na_west na-west
|
|
30
|
+
* ```
|
|
31
|
+
*/
|
|
32
|
+
class AdminPartition extends pulumi.CustomResource {
|
|
33
|
+
constructor(name, argsOrState, opts) {
|
|
34
|
+
let resourceInputs = {};
|
|
35
|
+
opts = opts || {};
|
|
36
|
+
if (opts.id) {
|
|
37
|
+
const state = argsOrState;
|
|
38
|
+
resourceInputs["description"] = state ? state.description : undefined;
|
|
39
|
+
resourceInputs["name"] = state ? state.name : undefined;
|
|
40
|
+
}
|
|
41
|
+
else {
|
|
42
|
+
const args = argsOrState;
|
|
43
|
+
resourceInputs["description"] = args ? args.description : undefined;
|
|
44
|
+
resourceInputs["name"] = args ? args.name : undefined;
|
|
45
|
+
}
|
|
46
|
+
opts = pulumi.mergeOptions(utilities.resourceOptsDefaults(), opts);
|
|
47
|
+
super(AdminPartition.__pulumiType, name, resourceInputs, opts);
|
|
48
|
+
}
|
|
49
|
+
/**
|
|
50
|
+
* Get an existing AdminPartition resource's state with the given name, ID, and optional extra
|
|
51
|
+
* properties used to qualify the lookup.
|
|
52
|
+
*
|
|
53
|
+
* @param name The _unique_ name of the resulting resource.
|
|
54
|
+
* @param id The _unique_ provider ID of the resource to lookup.
|
|
55
|
+
* @param state Any extra arguments used during the lookup.
|
|
56
|
+
* @param opts Optional settings to control the behavior of the CustomResource.
|
|
57
|
+
*/
|
|
58
|
+
static get(name, id, state, opts) {
|
|
59
|
+
return new AdminPartition(name, state, Object.assign(Object.assign({}, opts), { id: id }));
|
|
60
|
+
}
|
|
61
|
+
/**
|
|
62
|
+
* Returns true if the given object is an instance of AdminPartition. This is designed to work even
|
|
63
|
+
* when multiple copies of the Pulumi SDK have been loaded into the same process.
|
|
64
|
+
*/
|
|
65
|
+
static isInstance(obj) {
|
|
66
|
+
if (obj === undefined || obj === null) {
|
|
67
|
+
return false;
|
|
68
|
+
}
|
|
69
|
+
return obj['__pulumiType'] === AdminPartition.__pulumiType;
|
|
70
|
+
}
|
|
71
|
+
}
|
|
72
|
+
exports.AdminPartition = AdminPartition;
|
|
73
|
+
/** @internal */
|
|
74
|
+
AdminPartition.__pulumiType = 'consul:index/adminPartition:AdminPartition';
|
|
75
|
+
//# sourceMappingURL=adminPartition.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"adminPartition.js","sourceRoot":"","sources":["../adminPartition.ts"],"names":[],"mappings":";AAAA,wFAAwF;AACxF,iFAAiF;;;AAEjF,yCAAyC;AACzC,yCAAyC;AAEzC;;;;;;;;;;;;;;;;;;;;;;;GAuBG;AACH,MAAa,cAAe,SAAQ,MAAM,CAAC,cAAc;IA6CrD,YAAY,IAAY,EAAE,WAAsD,EAAE,IAAmC;QACjH,IAAI,cAAc,GAAkB,EAAE,CAAC;QACvC,IAAI,GAAG,IAAI,IAAI,EAAE,CAAC;QAClB,IAAI,IAAI,CAAC,EAAE,EAAE;YACT,MAAM,KAAK,GAAG,WAA8C,CAAC;YAC7D,cAAc,CAAC,aAAa,CAAC,GAAG,KAAK,CAAC,CAAC,CAAC,KAAK,CAAC,WAAW,CAAC,CAAC,CAAC,SAAS,CAAC;YACtE,cAAc,CAAC,MAAM,CAAC,GAAG,KAAK,CAAC,CAAC,CAAC,KAAK,CAAC,IAAI,CAAC,CAAC,CAAC,SAAS,CAAC;SAC3D;aAAM;YACH,MAAM,IAAI,GAAG,WAA6C,CAAC;YAC3D,cAAc,CAAC,aAAa,CAAC,GAAG,IAAI,CAAC,CAAC,CAAC,IAAI,CAAC,WAAW,CAAC,CAAC,CAAC,SAAS,CAAC;YACpE,cAAc,CAAC,MAAM,CAAC,GAAG,IAAI,CAAC,CAAC,CAAC,IAAI,CAAC,IAAI,CAAC,CAAC,CAAC,SAAS,CAAC;SACzD;QACD,IAAI,GAAG,MAAM,CAAC,YAAY,CAAC,SAAS,CAAC,oBAAoB,EAAE,EAAE,IAAI,CAAC,CAAC;QACnE,KAAK,CAAC,cAAc,CAAC,YAAY,EAAE,IAAI,EAAE,cAAc,EAAE,IAAI,CAAC,CAAC;IACnE,CAAC;IA1DD;;;;;;;;OAQG;IACI,MAAM,CAAC,GAAG,CAAC,IAAY,EAAE,EAA2B,EAAE,KAA2B,EAAE,IAAmC;QACzH,OAAO,IAAI,cAAc,CAAC,IAAI,EAAO,KAAK,kCAAO,IAAI,KAAE,EAAE,EAAE,EAAE,IAAG,CAAC;IACrE,CAAC;IAKD;;;OAGG;IACI,MAAM,CAAC,UAAU,CAAC,GAAQ;QAC7B,IAAI,GAAG,KAAK,SAAS,IAAI,GAAG,KAAK,IAAI,EAAE;YACnC,OAAO,KAAK,CAAC;SAChB;QACD,OAAO,GAAG,CAAC,cAAc,CAAC,KAAK,cAAc,CAAC,YAAY,CAAC;IAC/D,CAAC;;AA1BL,wCA4DC;AA9CG,gBAAgB;AACO,2BAAY,GAAG,4CAA4C,CAAC"}
|
package/configEntry.d.ts
CHANGED
|
@@ -174,6 +174,41 @@ import * as pulumi from "@pulumi/pulumi";
|
|
|
174
174
|
* }),
|
|
175
175
|
* });
|
|
176
176
|
* ```
|
|
177
|
+
* ### `exported-services` config entry
|
|
178
|
+
*
|
|
179
|
+
* ```typescript
|
|
180
|
+
* import * as pulumi from "@pulumi/pulumi";
|
|
181
|
+
* import * as consul from "@pulumi/consul";
|
|
182
|
+
*
|
|
183
|
+
* const exportedServices = new consul.ConfigEntry("exportedServices", {
|
|
184
|
+
* kind: "exported-services",
|
|
185
|
+
* configJson: JSON.stringify({
|
|
186
|
+
* Services: [{
|
|
187
|
+
* Name: "test",
|
|
188
|
+
* Namespace: "default",
|
|
189
|
+
* Consumers: [{
|
|
190
|
+
* Partition: "default",
|
|
191
|
+
* }],
|
|
192
|
+
* }],
|
|
193
|
+
* }),
|
|
194
|
+
* });
|
|
195
|
+
* ```
|
|
196
|
+
* ### `mesh` config entry
|
|
197
|
+
*
|
|
198
|
+
* ```typescript
|
|
199
|
+
* import * as pulumi from "@pulumi/pulumi";
|
|
200
|
+
* import * as consul from "@pulumi/consul";
|
|
201
|
+
*
|
|
202
|
+
* const mesh = new consul.ConfigEntry("mesh", {
|
|
203
|
+
* kind: "mesh",
|
|
204
|
+
* partition: "default",
|
|
205
|
+
* configJson: JSON.stringify({
|
|
206
|
+
* TransparentProxy: {
|
|
207
|
+
* MeshDestinationsOnly: true,
|
|
208
|
+
* },
|
|
209
|
+
* }),
|
|
210
|
+
* });
|
|
211
|
+
* ```
|
|
177
212
|
*/
|
|
178
213
|
export declare class ConfigEntry extends pulumi.CustomResource {
|
|
179
214
|
/**
|
|
@@ -207,6 +242,10 @@ export declare class ConfigEntry extends pulumi.CustomResource {
|
|
|
207
242
|
* The namespace to create the config entry within.
|
|
208
243
|
*/
|
|
209
244
|
readonly namespace: pulumi.Output<string | undefined>;
|
|
245
|
+
/**
|
|
246
|
+
* The partition the config entry is associated with.
|
|
247
|
+
*/
|
|
248
|
+
readonly partition: pulumi.Output<string | undefined>;
|
|
210
249
|
/**
|
|
211
250
|
* Create a ConfigEntry resource with the given unique name, arguments, and options.
|
|
212
251
|
*
|
|
@@ -236,6 +275,10 @@ export interface ConfigEntryState {
|
|
|
236
275
|
* The namespace to create the config entry within.
|
|
237
276
|
*/
|
|
238
277
|
namespace?: pulumi.Input<string>;
|
|
278
|
+
/**
|
|
279
|
+
* The partition the config entry is associated with.
|
|
280
|
+
*/
|
|
281
|
+
partition?: pulumi.Input<string>;
|
|
239
282
|
}
|
|
240
283
|
/**
|
|
241
284
|
* The set of arguments for constructing a ConfigEntry resource.
|
|
@@ -257,4 +300,8 @@ export interface ConfigEntryArgs {
|
|
|
257
300
|
* The namespace to create the config entry within.
|
|
258
301
|
*/
|
|
259
302
|
namespace?: pulumi.Input<string>;
|
|
303
|
+
/**
|
|
304
|
+
* The partition the config entry is associated with.
|
|
305
|
+
*/
|
|
306
|
+
partition?: pulumi.Input<string>;
|
|
260
307
|
}
|