Skip to content

Commit

Permalink
Merge pull request Bayer-Group#280 from zomboc0m/master
Browse files Browse the repository at this point in the history
Added tags to IAM roles
  • Loading branch information
bkrodgers committed May 21, 2021
2 parents 35b222f + 5a803c1 commit 5f07975
Showing 1 changed file with 2 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -126,6 +126,7 @@ case class `AWS::IAM::Role`(
Policies: Option[Seq[Policy]] = None,
PermissionsBoundary: Option[Token[String]] = None,
RoleName: Option[Token[String]] = None,
Tags: Option[Seq[AmazonTag]] = None,
override val DependsOn: Option[Seq[String]] = None,
override val Condition: Option[ConditionRef] = None
) extends Resource[`AWS::IAM::Role`] with HasArn {
Expand All @@ -135,7 +136,7 @@ case class `AWS::IAM::Role`(
override def arn = `Fn::GetAtt`(Seq(name, "Arn"))
}
object `AWS::IAM::Role` extends DefaultJsonProtocol {
implicit val format: JsonFormat[`AWS::IAM::Role`] = jsonFormat9(`AWS::IAM::Role`.apply)
implicit val format: JsonFormat[`AWS::IAM::Role`] = jsonFormat10(`AWS::IAM::Role`.apply)
}

sealed trait PolicyConditionValue
Expand Down

0 comments on commit 5f07975

Please sign in to comment.