热门标签 | HotTags
当前位置:  开发笔记 > 编程语言 > 正文

resource/aws_ecs_service:Addpublic_assign_ipattributeandfixInvalidParameterExceptionhandling

Fixes#85Closes#2873Closes#3098ThisPRisacontinuationof#2559,inc

Fixes #85
Closes #2873
Closes #3098

This PR is a continuation of #2559, including crash prevention for

1
nil

1
AssignPublicIp

and testing fixes for that PR. While trying to run and fix the acceptance testing, I was having major trouble with the incorrect retry logic that was noted in #85 so fixed that as well on top of the original PR.

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
Tests passed: 15

=== RUN   TestAccAWSEcsService_withDeploymentValues

--- PASS: TestAccAWSEcsService_withDeploymentValues (18.69s)

=== RUN   TestAccAWSEcsService_withIamRole

--- PASS: TestAccAWSEcsService_withIamRole (30.97s)

=== RUN   TestAccAWSEcsService_withEcsClusterName

--- PASS: TestAccAWSEcsService_withEcsClusterName (32.51s)

=== RUN   TestAccAWSEcsService_withUnnormalizedPlacementStrategy

--- PASS: TestAccAWSEcsService_withUnnormalizedPlacementStrategy (34.12s)

=== RUN   TestAccAWSEcsService_withPlacementConstraints

--- PASS: TestAccAWSEcsService_withPlacementConstraints (34.33s)

=== RUN   TestAccAWSEcsService_withARN

--- PASS: TestAccAWSEcsService_withARN (38.19s)

=== RUN   TestAccAWSEcsService_withFamilyAndRevision

--- PASS: TestAccAWSEcsService_withFamilyAndRevision (44.44s)

=== RUN   TestAccAWSEcsService_withRenamedCluster

--- PASS: TestAccAWSEcsService_withRenamedCluster (45.14s)

=== RUN   TestAccAWSEcsService_withPlacementStrategy

--- PASS: TestAccAWSEcsService_withPlacementStrategy (48.49s)

=== RUN   TestAccAWSEcsService_withPlacementConstraints_emptyExpression

--- PASS: TestAccAWSEcsService_withPlacementConstraints_emptyExpression (48.62s)

=== RUN   TestAccAWSEcsService_withLaunchTypeEC2AndNetworkConfiguration

--- PASS: TestAccAWSEcsService_withLaunchTypeEC2AndNetworkConfiguration (50.84s)

=== RUN   TestAccAWSEcsService_withLbChanges

--- PASS: TestAccAWSEcsService_withLbChanges (134.42s)

=== RUN   TestAccAWSEcsService_healthCheckGracePeriodSeconds

--- PASS: TestAccAWSEcsService_healthCheckGracePeriodSeconds (211.31s)

=== RUN   TestAccAWSEcsService_withAlb

--- PASS: TestAccAWSEcsService_withAlb (225.66s)

=== RUN   TestAccAWSEcsService_withLaunchTypeFargate

--- PASS: TestAccAWSEcsService_withLaunchTypeFargate (251.76s)

该提问来源于开源项目:hashicorp/terraform-provider-aws

I'm going to lock this issue because it has been closed for 30 days ⏳. This helps our maintainers find and focus on the active issues.



If you feel this issue should be reopened, we encourage creating a new issue linking back to this one for added context. Thanks!


   



推荐阅读
  • TerraformVersionTerraformv0.9.11AffectedResource(s)Pleas ... [详细]
  • Linux服务器密码过期策略、登录次数限制、私钥登录等配置方法
    本文介绍了在Linux服务器上进行密码过期策略、登录次数限制、私钥登录等配置的方法。通过修改配置文件中的参数,可以设置密码的有效期、最小间隔时间、最小长度,并在密码过期前进行提示。同时还介绍了如何进行公钥登录和修改默认账户用户名的操作。详细步骤和注意事项可参考本文内容。 ... [详细]
  • Spring特性实现接口多类的动态调用详解
    本文详细介绍了如何使用Spring特性实现接口多类的动态调用。通过对Spring IoC容器的基础类BeanFactory和ApplicationContext的介绍,以及getBeansOfType方法的应用,解决了在实际工作中遇到的接口及多个实现类的问题。同时,文章还提到了SPI使用的不便之处,并介绍了借助ApplicationContext实现需求的方法。阅读本文,你将了解到Spring特性的实现原理和实际应用方式。 ... [详细]
  • Imtryingtofigureoutawaytogeneratetorrentfilesfromabucket,usingtheAWSSDKforGo.我正 ... [详细]
  • Spring学习(4):Spring管理对象之间的关联关系
    本文是关于Spring学习的第四篇文章,讲述了Spring框架中管理对象之间的关联关系。文章介绍了MessageService类和MessagePrinter类的实现,并解释了它们之间的关联关系。通过学习本文,读者可以了解Spring框架中对象之间的关联关系的概念和实现方式。 ... [详细]
  • 本文介绍了一个适用于PHP应用快速接入TRX和TRC20数字资产的开发包,该开发包支持使用自有Tron区块链节点的应用场景,也支持基于Tron官方公共API服务的轻量级部署场景。提供的功能包括生成地址、验证地址、查询余额、交易转账、查询最新区块和查询交易信息等。详细信息可参考tron-php的Github地址:https://github.com/Fenguoz/tron-php。 ... [详细]
  • GreenDAO快速入门
    前言之前在自己做项目的时候,用到了GreenDAO数据库,其实对于数据库辅助工具库从OrmLite,到litePal再到GreenDAO,总是在不停的切换,但是没有真正去了解他们的 ... [详细]
  • 本文介绍了在Android开发中使用软引用和弱引用的应用。如果一个对象只具有软引用,那么只有在内存不够的情况下才会被回收,可以用来实现内存敏感的高速缓存;而如果一个对象只具有弱引用,不管内存是否足够,都会被垃圾回收器回收。软引用和弱引用还可以与引用队列联合使用,当被引用的对象被回收时,会将引用加入到关联的引用队列中。软引用和弱引用的根本区别在于生命周期的长短,弱引用的对象可能随时被回收,而软引用的对象只有在内存不够时才会被回收。 ... [详细]
  • Thisworkcameoutofthediscussioninhttps://github.com/typesafehub/config/issues/272 ... [详细]
  • Thisissuewasoriginallyopenedbyashashicorp/terraform#5664.Itwasmigratedhe ... [详细]
  • Iamworkingonaprojectwhichrequiresopentokandcallkitfornotifyingusers.However,theappli ... [详细]
  • Server Installation for Jitsi Meet
    2019独角兽企业重金招聘Python工程师标准ServerInstallationforJitsiMeetThisdescribesconfiguringaserverji ... [详细]
  • 在本教程中,我们将看到如何使用FLASK制作第一个用于机器学习模型的RESTAPI。我们将从创建机器学习模型开始。然后,我们将看到使用Flask创建AP ... [详细]
  • oracle使索引不可见,关于oracle的不可见索引探究
    --FDH一、关于oracle的不可见索引oracle对于不可见索引的给出的官方定义是:AninvisibleindexismaintainedbyDMLoperat ... [详细]
  • 面条|发生_做到这7点,避免微服务落地失败
    篇首语:本文由编程笔记#小编为大家整理,主要介绍了做到这7点,避免微服务落地失败相关的知识,希望对你有一定的参考价值。 ... [详细]
author-avatar
益达怡君33
这个家伙很懒,什么也没留下!
PHP1.CN | 中国最专业的PHP中文社区 | DevBox开发工具箱 | json解析格式化 |PHP资讯 | PHP教程 | 数据库技术 | 服务器技术 | 前端开发技术 | PHP框架 | 开发工具 | 在线工具
Copyright © 1998 - 2020 PHP1.CN. All Rights Reserved | 京公网安备 11010802041100号 | 京ICP备19059560号-4 | PHP1.CN 第一PHP社区 版权所有