Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
resource/aws_elastic_beanstalk_environment: Fixes for tfproviderlint …
…R002 (#11945) Reference: #9952 Remove pointer value dereferences, which can cause potential panics and are extraneous as `Set()` automatically handles pointer types including when `nil`. Previously: ``` aws/resource_aws_elastic_beanstalk_environment.go:592:26: R002: ResourceData.Set() pointer value dereference is extraneous ``` Output from acceptance testing: ``` --- PASS: TestAccAWSBeanstalkEnv_resource (374.31s) --- PASS: TestAccAWSBeanstalkEnv_cname_prefix (396.88s) --- PASS: TestAccAWSBeanstalkEnv_platformArn (407.51s) --- PASS: TestAccAWSBeanstalkEnv_basic (470.63s) --- PASS: TestAccAWSBeanstalkEnv_settingWithJsonValue (510.72s) --- PASS: TestAccAWSBeanstalkEnv_tier (539.81s) --- PASS: TestAccAWSBeanstalkEnv_config (573.89s) --- PASS: TestAccAWSBeanstalkEnv_template_change (637.28s) --- PASS: TestAccAWSBeanstalkEnv_version_label (640.37s) --- PASS: TestAccAWSBeanstalkEnv_tags (711.19s) --- PASS: TestAccAWSBeanstalkEnv_settings_update (890.65s) ```
- Loading branch information