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

Add Account Assignment IDs to IC Account & App Permission Set Lists #49747

Merged
merged 2 commits into from
Dec 5, 2024
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
343 changes: 178 additions & 165 deletions api/gen/proto/go/teleport/identitycenter/v1/identitycenter.pb.go

Large diffs are not rendered by default.

6 changes: 5 additions & 1 deletion api/proto/teleport/identitycenter/v1/identitycenter.proto
Original file line number Diff line number Diff line change
Expand Up @@ -34,13 +34,17 @@ message PermissionSetInfo {
// Role is an optional ARN indicating role provisioned to this account. May be
// empty if the permission set is not provisioned or is not relevant in the
string role = 3;

// AssignmentID is the name of a Teleport Account Assignment resource
// representing this permission set assigned to the enclosing Account.
string assignment_id = 4;
}

// AccountStatus represents any commonly-changing data about an Identity
// Center account.
message AccountStatus {}

// Account is an Identity-Ceneter-managed AWS account
// Account is an Identity-Center-managed AWS account
message Account {
string kind = 1;
string sub_kind = 2;
Expand Down
4 changes: 4 additions & 0 deletions api/proto/teleport/legacy/types/types.proto
Original file line number Diff line number Diff line change
Expand Up @@ -1009,6 +1009,10 @@ message IdentityCenterPermissionSet {

// Name is the human-readable name of the Permission Set.
string Name = 2 [(gogoproto.jsontag) = "name,omitempty"];

// AssignmentID is the ID of the Teelport Account Assignment resource that
// represents this permission being assigned on the enclosing Account.
string AssignmentID = 3 [(gogoproto.jsontag) = "assignment_name,omitempty"];
}

// AppIdentityCenter encapsulates information about an AWS Identity Center
Expand Down
3 changes: 2 additions & 1 deletion api/types/derived.gen.go

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

3,825 changes: 1,936 additions & 1,889 deletions api/types/types.pb.go

Large diffs are not rendered by default.

Original file line number Diff line number Diff line change
Expand Up @@ -95,6 +95,7 @@ Optional:
Optional:

- `arn` (String) ARN is the fully-formed ARN of the Permission Set.
- `assignment_name` (String) AssignmentID is the ID of the Teelport Account Assignment resource that represents this permission being assigned on the enclosing Account.
- `name` (String) Name is the human-readable name of the Permission Set.


Expand Down
1 change: 1 addition & 0 deletions docs/pages/reference/terraform-provider/resources/app.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -114,6 +114,7 @@ Optional:
Optional:

- `arn` (String) ARN is the fully-formed ARN of the Permission Set.
- `assignment_name` (String) AssignmentID is the ID of the Teelport Account Assignment resource that represents this permission being assigned on the enclosing Account.
- `name` (String) Name is the human-readable name of the Permission Set.


Expand Down
44 changes: 44 additions & 0 deletions integrations/terraform/tfschema/types_terraform.go

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Loading