You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
pipeline_name=substr(var.function_name, 0, 100) // AWS CodePipeline has a limit of 100 characters for the pipeline name, see https://docs.aws.amazon.com/codepipeline/latest/userguide/limits.html
10
+
pipeline_artifacts_folder=substr(local.pipeline_name, 0, 20) // AWS CodePipeline truncates the name of the artifacts folder automatically
11
+
12
+
// calculate the maximum length for default IAM role
13
+
// names used in CodePipeline, CodeBuild and CodeDeploy
14
+
// including the AWS Service and region suffix. Those role names
15
+
// must not exceed 64 characters,see https://docs.aws.amazon.com/IAM/latest/UserGuide/reference_iam-quotas.html
0 commit comments