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
IMPORTANT: The master branch is used in source just as an example. In your code, do not pin to master because there may be breaking changes between releases. Instead pin to the release tag (e.g. ?ref=tags/x.y.z) of one of our [latest releases](https://github.com/terraform-module/terraform-aws-ecs-services/releases).
29
+
IMPORTANT: The master branch is used in source just as an example. In your code, do not pin to master because there may be breaking changes between releases. Instead pin to the release tag (e.g. ?ref=tags/x.y.z) of one of our [latest releases](https://github.com/terraform-module/terraform-aws-ecs-bootstrap/releases).
30
30
31
31
See `examples` directory for working examples to reference:
32
32
33
33
```hcl
34
-
module "ecs-services" {
35
-
source = "terraform-module/ecs-services/aws"
34
+
module "ecs-bootstrap" {
35
+
source = "terraform-module/ecs-bootstrap/aws"
36
36
version = "~> 1"
37
37
}
38
38
```
@@ -41,15 +41,14 @@ module "ecs-services" {
41
41
42
42
See `examples` directory for working examples to reference
<!-- BEGINNING OF PRE-COMMIT-TERRAFORM DOCS HOOK -->
@@ -114,17 +113,23 @@ Submit a pull request
114
113
115
114
# Authors
116
115
117
-
Currently maintained by [Ivan Katliarchuk](https://github.com/ivankatliarchuk) and these [awesome contributors](https://github.com/terraform-module/terraform-aws-ecs-services/graphs/contributors).
116
+
Currently maintained by [Ivan Katliarchuk](https://github.com/ivankatliarchuk) and these [awesome contributors](https://github.com/terraform-module/terraform-aws-ecs-bootstrap/graphs/contributors).
Copy file name to clipboardExpand all lines: iam.tf
+40-18Lines changed: 40 additions & 18 deletions
Original file line number
Diff line number
Diff line change
@@ -1,10 +1,10 @@
1
-
# This role required is due to the fact that the tasks will be executed “serverless” with the Fargate configuration.
2
-
#This means there’s no EC2 instances involved, meaning the permissions that usually go to the EC2 instances have to go somewhere else: the Fargate service. This enables the service to e.g. pull the image from ECR, spin up or deregister tasks etc. AWS provides you with a predefined policy for this, so I just attached this to my role:
0 commit comments