Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Added disambiguation that creation request can also update roles #17371

Merged
merged 5 commits into from
Feb 22, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
11 changes: 5 additions & 6 deletions ui/.yarn/releases/yarn-1.22.19.js
Original file line number Diff line number Diff line change
Expand Up @@ -71633,9 +71633,9 @@ declare var __webpack_require__: mixed;

function isHexCode(c) {
return (
(0x30 /* 0 */ <= c && c <= 0x39 /* 9 */) ||
(0x41 /* A */ <= c && c <= 0x46 /* F */) ||
(0x61 /* a */ <= c && c <= 0x66 /* f */)
(0x30 /* 0 */ <= c && c <= 0x39) /* 9 */ ||
(0x41 /* A */ <= c && c <= 0x46) /* F */ ||
(0x61 /* a */ <= c && c <= 0x66) /* f */
);
}

Expand Down Expand Up @@ -140682,9 +140682,8 @@ util.inherits(module.exports.ISO_8859_7, sbcs);
DBCSCodec.prototype._setEncodeChar = function (uCode, dbcsCode) {
var bucket = this._getEncodeBucket(uCode);
var low = uCode & 0xff;
if (bucket[low] <= SEQ_START)
this.encodeTableSeq[SEQ_START - bucket[low]][DEF_CHAR] =
dbcsCode; // There's already a sequence, set a single-char subsequence of it.
if (bucket[low] <= SEQ_START) this.encodeTableSeq[SEQ_START - bucket[low]][DEF_CHAR] = dbcsCode;
// There's already a sequence, set a single-char subsequence of it.
else if (bucket[low] == UNASSIGNED) bucket[low] = dbcsCode;
};

Expand Down
2 changes: 1 addition & 1 deletion website/content/api-docs/auth/alicloud.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ This documentation assumes the AliCloud auth method is mounted at the `/auth/ali
path in Vault. Since it is possible to enable auth methods at any location,
please update your API calls accordingly.

## Create Role
## Create/Update Role

Registers a role. Only entities using the role registered using this endpoint
will be able to perform the login operation.
Expand Down
2 changes: 1 addition & 1 deletion website/content/api-docs/auth/aws.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -687,7 +687,7 @@ $ curl \
http://127.0.0.1:8200/v1/auth/aws/config/tidy/roletag-denylist
```

## Create Role
## Create/Update Role

Registers a role in the method. Only those instances or principals which
are using the role registered using this endpoint, will be able to perform
Expand Down
2 changes: 1 addition & 1 deletion website/content/api-docs/auth/azure.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -133,7 +133,7 @@ $ curl \
https://127.0.0.1:8200/v1/auth/azure/rotate-root
```

## Create Role
## Create/Update Role

Registers a role in the method. Role types have specific entities
that can perform login operations against this endpoint. Constraints specific
Expand Down
2 changes: 1 addition & 1 deletion website/content/api-docs/auth/cf.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -125,7 +125,7 @@ $ curl \
http://127.0.0.1:8200/v1/auth/cf/config
```

## Create Role
## Create/Update Role

Create a role in Vault granting a particular level of access to a particular group
of CF instances. We recommend using the CF API or the CF CLI to gain the IDs you
Expand Down
2 changes: 1 addition & 1 deletion website/content/api-docs/auth/gcp.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -128,7 +128,7 @@ $ curl \
}
```

## Create Role
## Create/Update Role

Registers a role in the method. Role types have specific entities
that can perform login operations against this endpoint. Constraints specific
Expand Down
2 changes: 1 addition & 1 deletion website/content/api-docs/auth/jwt.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -95,7 +95,7 @@ $ curl \
}
```

## Create Role
## Create/Update Role

Registers a role in the method. Role types have specific entities
that can perform login operations against this endpoint. Constraints specific
Expand Down
2 changes: 1 addition & 1 deletion website/content/api-docs/auth/kubernetes.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -112,7 +112,7 @@ $ curl \
}
```

## Create Role
## Create/Update Role

Registers a role in the auth method. Role types have specific entities
that can perform login operations against this endpoint. Constraints specific
Expand Down
2 changes: 1 addition & 1 deletion website/content/api-docs/auth/oci.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -70,7 +70,7 @@ $ curl \
}
```

## Create Role
## Create/Update Role

Create a Vault administrator role in the OCI Auth method.

Expand Down