Ryan Ju
Ryan Ju
Consider this case: 1. OpsCenter server and Cassandra cluster are deployed in the same network, let's say 10.0.0.0/24. 2. Cassandra node0 has listen_address = 10.0.0.100, broadcast_address = 10.0.0.100, rpc_address =...
This code is wrong: https://github.com/awslabs/goformation/blob/d56929b269373078275877578e19f2f554ac6eff/cloudformation/serverless/aws-serverless-function_s3location.go#L24 This is the official doc. It should be `string`, not `int`. https://docs.aws.amazon.com/serverless-application-model/latest/developerguide/sam-property-function-functioncode.html#sam-function-functioncode-version
**Describe the issue** A short description of what the issue is. Assist.ts doesn't specify `wss` in the websocket host url. This causes the protocol to default to `ws`, and connection...
The [official doc](https://docs.aws.amazon.com/serverless-application-model/latest/developerguide/sam-property-function-sqs.html) has more fields than the [current code](https://github.com/awslabs/goformation/blob/5178bf01a0b608a1ccdf618e17d344dd1a0b0a28/cloudformation/serverless/aws-serverless-function_sqsevent.go#L11) Would be good if they could be added, as we cannot set `MaxConcurrency` at the moment.
Version ``` v0.10.3 ``` Example code ```go package main import ( "fmt" stdjson "encoding/json" "github.com/goccy/go-json" ) type A struct { B *B `json:"b"` } type B struct { Foo *string...