Sfoglia il codice sorgente

changed arn list to aws_arn

Stefan McShane 3 anni fa
parent
commit
0a4a451803
1 ha cambiato i file con 2 aggiunte e 2 eliminazioni
  1. 2 2
      api/server/handlers/project_integration/list_aws.go

+ 2 - 2
api/server/handlers/project_integration/list_aws.go

@@ -30,8 +30,8 @@ func NewListAWSHandler(
 type ListAWSAssumeRoleLink struct {
 	// ID is the ID of the assume role chain in the db. UUID as a string
 	ID string `json:"id"`
-	// ARN is the target ARN in an assume role chain
-	ARN string `json:"arn"`
+	// ARN is the target ARN in an AWS assume role chain
+	ARN string `json:"aws_arn"`
 	// ProjectID is the projec that this link belongs to
 	ProjectID int `json:"project_id"`
 }