Skip to content
This repository has been archived by the owner on Jan 8, 2024. It is now read-only.

Commit

Permalink
docs: Add integrations docs.
Browse files Browse the repository at this point in the history
  • Loading branch information
paladin-devops committed May 25, 2023
1 parent 8c95135 commit a0b41bd
Show file tree
Hide file tree
Showing 3 changed files with 21 additions and 1 deletion.
5 changes: 4 additions & 1 deletion .changelog/4742.txt
Original file line number Diff line number Diff line change
Expand Up @@ -14,5 +14,8 @@ plugin/aws-ecs: Fix failure when destroying the target group during a release
destroy operation.
```
```release-note:bug
plugin/aws-ecs: Destroy the ALB only if it is managed by Waypoint.
```
```release-note:bug
runnerinstall/aws-ecs: Add missing permission to on-demand runner IAM policy.
```
```
Original file line number Diff line number Diff line change
Expand Up @@ -395,6 +395,21 @@ parameter {
default_value = "public subnets in the default VPC"
}

parameter {
key = "target_group_protocol"
description = "The protocol to use for routing traffic to the targets.\nThe protocol to use for routing traffic to the targets. For Application Load Balancers, the supported protocols are HTTP and HTTPS. For Network Load Balancers, the supported protocols are TCP, TLS, UDP, or TCP_UDP. For Gateway Load Balancers, the supported protocol is GENEVE. A TCP_UDP listener must be associated with a TCP_UDP target group. If the target is a Lambda function, this parameter does not apply."
type = "string"
required = false
default_value = "HTTP"
}

parameter {
key = "target_group_protocol_version"
description = "The version of the protocol to use for routing traffic to the targets.\n[HTTP/HTTPS protocol] The protocol version. Specify GRPC to send requests to targets using gRPC. Specify HTTP2 to send requests to targets using HTTP/2. The default is HTTP1, which sends requests to targets using HTTP/1.1."
type = "string"
required = false
}

parameter {
key = "task_role_name"
description = "the name of the task IAM role to assign.\nIf no role exists and a one or more task role policies are requested, a role with this name will be created."
Expand Down
2 changes: 2 additions & 0 deletions builtin/aws/ecs/releaser.go
Original file line number Diff line number Diff line change
Expand Up @@ -180,6 +180,8 @@ func (r *Releaser) Release(
s.Done()

return &Release{
// TODO: Determine what the prefix to the hostname should be instead of
// assuming HTTP
Url: "http://" + hostname,
LoadBalancerArn: target.LoadBalancerArn,
}, nil
Expand Down

0 comments on commit a0b41bd

Please sign in to comment.