| 12345678910111213141516171819202122232425262728293031323334 |
- package models
- import (
- "github.com/google/uuid"
- "gorm.io/gorm"
- )
- // AWSAssumeRoleChain represents an assume role chain link.
- // a unique constraint is created on this table by the migration script
- // because gorm creates unique indices, instead of unique constraints, which is utterly useless.
- type AWSAssumeRoleChain struct {
- gorm.Model
- // ID is a UUID for the CAPI Cluster's config
- ID uuid.UUID `gorm:"type:uuid;primaryKey"`
- // ProjectID is the ID of the project that the config belongs to.
- // This should be a foreign key, but GORM doesnt play well with FKs.
- ProjectID int `json:"project_id"`
- // SourceARN is ARN which will assume the target ARN
- SourceARN string `json:"source_arn"`
- // TargetARN is ARN which will assume the target ARN
- TargetARN string `json:"target_arn"`
- // ExternalID is ID which is required when assuming a role
- ExternalID string `json:"external_id"`
- }
- // TableName overrides the table name
- func (AWSAssumeRoleChain) TableName() string {
- return "aws_assume_role_chains"
- }
|