David D. Riddle
David D. Riddle
Nota bene the config step needs to cleanup empty aws_access_key_id fields otherwise errors are given by aws. For example the following credentials file: ``` [default] aws_access_key_id = aws_secret_access_key = aws_session_token...
@JonRoma and @kwessel this is not a bug per se. It is a design limitation or even feature depending on your view point. Terraform is a typed language, and does...
At the time we thought `map(any)` was the safest option, I think, but it looks like `map(string)` is better, and gives the behavior that we would have expected with Terraform...
> But then why, @ddriddle, is it that if I also include task_role_arn = “” then I don’t need to quote the cpu and memory values? Is it smart enough...
@kwessel that is correct. I recommend changing the type to string. Please test that it works as we expect but it should: "The Terraform language will automatically convert number and...
@cmaturi @JonRoma ECS does _NOT_ support public namespaces. See the service discovery [documentation](https://docs.aws.amazon.com/AmazonECS/latest/developerguide/service-discovery.html): > * The Create Service workflow in the Amazon ECS console only supports registering services into private...
@JonRoma looking at the GUI I am beginning to doubt the documentation... First the GUI does allow the selection of public namespaces. Could you try manually creating an ECS service...
@kwessel Which tier are you using? If you use `public` then `assign_public_ip` needs to be `true`, if you use `private` you can not make outbound Internet connections, if you use...
The issue is that the plugin still has external dependencies. The plugin needs to be completely decoupled from all imports other than `botocore` and other deps directly used by `aws-cli`....
Any chance this will ever be fixed?