terraform/builtin/providers/aws
Paul Stack 62347ea833 provider/aws: Fall back to old tagging mechanism for AWS gov and aws China (#14627)
Fixes: #14535

When in a `restricted` cloud, we should fall back to the old method of
tagging. Before this change we saw the following:

```
% terraform apply                                                                                                                                                                                         ✭
aws_instance.foo: Creating...
  ami:                          "" => "ami-0fa3c42c"
  associate_public_ip_address:  "" => "<computed>"
  availability_zone:            "" => "<computed>"
  ebs_block_device.#:           "" => "<computed>"
  ephemeral_block_device.#:     "" => "<computed>"
  instance_state:               "" => "<computed>"
  instance_type:                "" => "m1.small"
  ipv6_address_count:           "" => "<computed>"
  ipv6_addresses.#:             "" => "<computed>"
  key_name:                     "" => "<computed>"
  network_interface.#:          "" => "<computed>"
  network_interface_id:         "" => "<computed>"
  placement_group:              "" => "<computed>"
  primary_network_interface_id: "" => "<computed>"
  private_dns:                  "" => "<computed>"
  private_ip:                   "" => "<computed>"
  public_dns:                   "" => "<computed>"
  public_ip:                    "" => "<computed>"
  root_block_device.#:          "" => "<computed>"
  security_groups.#:            "" => "<computed>"
  source_dest_check:            "" => "true"
  subnet_id:                    "" => "<computed>"
  tags.%:                       "" => "1"
  tags.foo:                     "" => "bar"
  tenancy:                      "" => "<computed>"
  volume_tags.%:                "" => "<computed>"
  vpc_security_group_ids.#:     "" => "<computed>"
aws_instance.foo: Creation complete (ID: i-0009f227ae24791b9)

Apply complete! Resources: 1 added, 0 changed, 0 destroyed.

% terraform plan                                                                                                                                                                                          ✭
Refreshing Terraform state in-memory prior to plan...
The refreshed state will be used to calculate this plan, but will not be
persisted to local or remote state storage.

aws_instance.foo: Refreshing state... (ID: i-0009f227ae24791b9)
The Terraform execution plan has been generated and is shown below.
Resources are shown in alphabetical order for quick scanning. Green resources
will be created (or destroyed and then created if an existing resource
exists), yellow resources are being changed in-place, and red resources
will be destroyed. Cyan entries are data sources to be read.

Note: You didn't specify an "-out" parameter to save this plan, so when
"apply" is called, Terraform can't guarantee this is what will execute.

~ aws_instance.foo
    tags.%:   "0" => "1"
    tags.foo: "" => "bar"

Plan: 0 to add, 1 to change, 0 to destroy.
```

After this patch, we see the following:

```
% terraform apply                                                                                                                                                                                       ✹ ✭
[WARN] /Users/stacko/Code/go/bin/terraform-provider-aws overrides an internal plugin for aws-provider.
  If you did not expect to see this message you will need to remove the old plugin.
  See https://www.terraform.io/docs/internals/internal-plugins.html
aws_instance.foo: Creating...
  ami:                          "" => "ami-0fa3c42c"
  associate_public_ip_address:  "" => "<computed>"
  availability_zone:            "" => "<computed>"
  ebs_block_device.#:           "" => "<computed>"
  ephemeral_block_device.#:     "" => "<computed>"
  instance_state:               "" => "<computed>"
  instance_type:                "" => "m1.small"
  ipv6_address_count:           "" => "<computed>"
  ipv6_addresses.#:             "" => "<computed>"
  key_name:                     "" => "<computed>"
  network_interface.#:          "" => "<computed>"
  network_interface_id:         "" => "<computed>"
  placement_group:              "" => "<computed>"
  primary_network_interface_id: "" => "<computed>"
  private_dns:                  "" => "<computed>"
  private_ip:                   "" => "<computed>"
  public_dns:                   "" => "<computed>"
  public_ip:                    "" => "<computed>"
  root_block_device.#:          "" => "<computed>"
  security_groups.#:            "" => "<computed>"
  source_dest_check:            "" => "true"
  subnet_id:                    "" => "<computed>"
  tags.%:                       "" => "1"
  tags.foo:                     "" => "bar"
  tenancy:                      "" => "<computed>"
  volume_tags.%:                "" => "<computed>"
  vpc_security_group_ids.#:     "" => "<computed>"
aws_instance.foo: Creation complete (ID: i-04cd122e28f167a14)

Apply complete! Resources: 1 added, 0 changed, 0 destroyed.

% terraform plan                                                                                                                                                                                        ✹ ✭
[WARN] /Users/stacko/Code/go/bin/terraform-provider-aws overrides an internal plugin for aws-provider.
  If you did not expect to see this message you will need to remove the old plugin.
  See https://www.terraform.io/docs/internals/internal-plugins.html
Refreshing Terraform state in-memory prior to plan...
The refreshed state will be used to calculate this plan, but will not be
persisted to local or remote state storage.

aws_instance.foo: Refreshing state... (ID: i-04cd122e28f167a14)
No changes. Infrastructure is up-to-date.

This means that Terraform did not detect any differences between your
configuration and real physical resources that exist. As a result, Terraform
doesn't need to do anything.
```
2017-05-18 17:28:37 +03:00
..
test-fixtures provider/aws: Add test for SNS subscription w/ autoconfirming endpoint (#13912) 2017-04-25 21:25:36 +01:00
auth_helpers.go Fix for getting partition for federated users (#13992) 2017-04-27 10:24:53 -05:00
auth_helpers_test.go aws: Refactor API mock helpers (#12769) 2017-03-16 17:41:57 +00:00
autoscaling_tags.go providers/aws: add tags for resource_aws_autoscaling_group (#13574) 2017-05-16 10:39:41 +02:00
autoscaling_tags_test.go providers/aws: add tags for resource_aws_autoscaling_group (#13574) 2017-05-16 10:39:41 +02:00
awserr.go
cloudfront_distribution_configuration_structure.go provider/aws: Add support for CustomOrigin timeouts to aws_cloudfront_distribution (#13367) 2017-04-27 02:13:59 +12:00
cloudfront_distribution_configuration_structure_test.go provider/aws: Add support for CustomOrigin timeouts to aws_cloudfront_distribution (#13367) 2017-04-27 02:13:59 +12:00
config.go provider/aws: AWS WAF Regional IPSet + ByteMatchSet support (#13705) 2017-05-13 22:01:27 +02:00
config_test.go aws: Discover supported EC2 platforms (#7568) 2017-03-16 21:11:55 +00:00
core_acceptance_test.go
data_source_aws_acm_certificate.go provider/aws: Fix panic in aws_acm_certificate datasource (#10051) 2016-11-11 16:07:50 +02:00
data_source_aws_acm_certificate_test.go provider/aws: Fix panic in aws_acm_certificate datasource (#10051) 2016-11-11 16:07:50 +02:00
data_source_aws_alb.go provider/aws: Add aws_alb data source (#10196) 2016-11-21 10:27:44 +02:00
data_source_aws_alb_listener.go provider/aws: Add aws_alb_listener data source (#10181) 2016-11-18 13:01:21 +02:00
data_source_aws_alb_listener_test.go provider/aws: Make ALBs internal or add IGW in tests 2017-01-21 22:00:36 +00:00
data_source_aws_alb_test.go provider/aws: Make ALBs internal or add IGW in tests 2017-01-21 22:00:36 +00:00
data_source_aws_ami.go provider/aws: Add new aws_db_snapshot data source (#10291) 2017-05-15 20:17:26 +03:00
data_source_aws_ami_ids.go provider/aws: Sort AMI and snapshot IDs (#13866) 2017-04-25 15:11:21 -07:00
data_source_aws_ami_ids_test.go provider/aws: Sort AMI and snapshot IDs (#13866) 2017-04-25 15:11:21 -07:00
data_source_aws_ami_test.go provider/aws: Fixed the data source ami enforcing non-nil values 2016-12-15 19:18:57 +01:00
data_source_aws_autoscaling_groups.go provider/aws: Add DataSource to get a list of Autoscaling groups in a (#11303) 2017-01-20 13:21:12 +00:00
data_source_aws_autoscaling_groups_test.go provider/aws: Add DataSource to get a list of Autoscaling groups in a (#11303) 2017-01-20 13:21:12 +00:00
data_source_aws_availability_zone.go provider/aws: availability zone data source 2016-09-24 15:19:33 -07:00
data_source_aws_availability_zone_test.go provider/aws: availability zone data source 2016-09-24 15:19:33 -07:00
data_source_aws_availability_zones.go provider/aws: Fix panic from AZs Data Source Test 2017-01-31 15:54:17 -05:00
data_source_aws_availability_zones_test.go provider/aws: Fix panic from AZs Data Source Test 2017-01-31 15:54:17 -05:00
data_source_aws_billing_service_account.go provider/aws: Allow ARN identifier to be set 2017-01-23 11:30:28 -05:00
data_source_aws_billing_service_account_test.go provider/aws: Allow ARN identifier to be set 2017-01-23 11:30:28 -05:00
data_source_aws_caller_identity.go provider/aws: Improve logging & docs for caller_identity (#13316) 2017-04-04 15:41:30 +01:00
data_source_aws_caller_identity_test.go provider/aws: Update calling_identity 2017-03-27 09:32:31 -04:00
data_source_aws_canonical_user_id.go Add 'aws_canonical_user_id' data source. (#11332) 2017-01-23 21:44:42 +00:00
data_source_aws_canonical_user_id_test.go Add 'aws_canonical_user_id' data source. (#11332) 2017-01-23 21:44:42 +00:00
data_source_aws_cloudformation_stack.go provider/aws: Add support to set iam_role_arn on cloudformation Stack (#12547) 2017-03-28 15:54:28 +03:00
data_source_aws_cloudformation_stack_test.go provider/aws: CloudFormation YAML template support (#11121) 2017-01-20 14:00:32 +00:00
data_source_aws_common_schema.go provider/aws: New Resource aws_ebs_snapshot (#10017) 2016-11-21 12:40:22 +02:00
data_source_aws_db_instance.go provider/aws: Add replica_source_db to the aws_db_instance datasource (#13842) 2017-04-21 14:23:48 +03:00
data_source_aws_db_instance_test.go provider/aws: Add address, port, hosted_zone_id and endpoint for aws_db_instance datasource (#12623) 2017-03-13 10:31:24 +02:00
data_source_aws_db_snapshot.go provider/aws: Add new aws_db_snapshot data source (#10291) 2017-05-15 20:17:26 +03:00
data_source_aws_db_snapshot_test.go provider/aws: Fix RDS DB snapshot data source acc test (#14610) 2017-05-18 13:52:33 +02:00
data_source_aws_ebs_snapshot.go provider/aws: Add new aws_db_snapshot data source (#10291) 2017-05-15 20:17:26 +03:00
data_source_aws_ebs_snapshot_ids.go provider/aws: Sort AMI and snapshot IDs (#13866) 2017-04-25 15:11:21 -07:00
data_source_aws_ebs_snapshot_ids_test.go provider/aws: Sort AMI and snapshot IDs (#13866) 2017-04-25 15:11:21 -07:00
data_source_aws_ebs_snapshot_test.go Add `aws_ami_ids` and `aws_ebs_snapshot_ids` resources (#13844) 2017-04-21 16:37:26 +03:00
data_source_aws_ebs_volume.go provider/aws: New Resource aws_ebs_snapshot (#10017) 2016-11-21 12:40:22 +02:00
data_source_aws_ebs_volume_test.go provider/aws: Adding a datasource for aws_ebs_volume (#9753) 2016-11-01 14:15:31 +00:00
data_source_aws_ecs_cluster.go documentation: Add documentation for the ECS Cluster Data Source 2017-02-01 09:51:26 -05:00
data_source_aws_ecs_cluster_test.go documentation: Add documentation for the ECS Cluster Data Source 2017-02-01 09:51:26 -05:00
data_source_aws_ecs_container_definition.go provider/aws: `aws_ecs_container_definition` datasource parameter 2016-08-25 18:10:08 +01:00
data_source_aws_ecs_container_definition_test.go provider/aws: `aws_ecs_container_definition` datasource parameter 2016-08-25 18:10:08 +01:00
data_source_aws_ecs_task_definition.go provider/aws: output the task definition name when errors occur during refresh (#12609) 2017-03-12 16:03:36 +02:00
data_source_aws_ecs_task_definition_test.go Fixed TestAccAWSEcsDataSource_ecsTaskDefinition 2017-04-05 09:07:49 -06:00
data_source_aws_efs_file_system.go provider/aws: Add documentation for the EFS File System DataSource 2017-04-29 11:38:10 +12:00
data_source_aws_efs_file_system_test.go provider/aws: Add documentation for the EFS File System DataSource 2017-04-29 11:38:10 +12:00
data_source_aws_eip.go provider/aws: Add aws_eip data source (#9833) 2016-12-13 12:09:21 +00:00
data_source_aws_eip_test.go provider/aws: Add aws_eip data source (#9833) 2016-12-13 12:09:21 +00:00
data_source_aws_elb_hosted_zone_id.go provider/aws: New DataSource: aws_elb_hosted_zone_id (#11027) 2017-01-12 16:50:58 +02:00
data_source_aws_elb_hosted_zone_id_test.go provider/aws: New DataSource: aws_elb_hosted_zone_id (#11027) 2017-01-12 16:50:58 +02:00
data_source_aws_elb_service_account.go provider/aws: Allow ARN identifier to be set 2017-01-23 11:30:28 -05:00
data_source_aws_elb_service_account_test.go provider/aws: Allow ARN identifier to be set 2017-01-23 11:30:28 -05:00
data_source_aws_iam_account_alias.go provider/aws: Consolidate IAM Account Alias tests (#14316) 2017-05-09 11:12:07 -05:00
data_source_aws_iam_policy_document.go Validate `effect` in aws_iam_policy_document data source (#10608) 2016-12-08 16:16:40 +01:00
data_source_aws_iam_policy_document_test.go provider/aws: IAM policy document: normalize wildcard principals 2016-11-01 08:46:34 -07:00
data_source_aws_iam_role.go Create AWS IAM Role data source, acceptance tests, documentation, and website link 2017-03-30 11:09:11 -05:00
data_source_aws_iam_role_test.go Create AWS IAM Role data source, acceptance tests, documentation, and website link 2017-03-30 11:09:11 -05:00
data_source_aws_iam_server_certificate.go Provide the certificate ID in the aws data source (#11693) 2017-02-04 12:34:16 +00:00
data_source_aws_iam_server_certificate_test.go provider/aws: Support Import of iam_server_certificate (#13065) 2017-03-27 18:49:11 +03:00
data_source_aws_instance.go Add instance_tags as an additional filter 2017-01-18 13:14:49 -05:00
data_source_aws_instance_test.go provider/aws: Tag VPCs created in our tests to help track down leaks (#14596) 2017-05-17 16:26:40 -05:00
data_source_aws_ip_ranges.go Normalize sets, don’t check for missing services. 2016-08-09 14:42:09 +02:00
data_source_aws_ip_ranges_test.go Added tests. 2016-08-09 14:42:19 +02:00
data_source_aws_kinesis_stream.go provider/aws: Add aws_kinesis_stream data source (#13562) 2017-04-20 22:13:39 +03:00
data_source_aws_kinesis_stream_test.go provider/aws: Add aws_kinesis_stream data source (#13562) 2017-04-20 22:13:39 +03:00
data_source_aws_kms_alias.go provider/aws: Add aws_kms_alias datasource (#13669) 2017-04-18 15:29:14 +03:00
data_source_aws_kms_alias_test.go provider/aws: Add aws_kms_alias datasource (#13669) 2017-04-18 15:29:14 +03:00
data_source_aws_kms_secret.go provider/aws: New data provider to decrypt KMS secrets (#11460) 2017-01-29 21:01:38 +00:00
data_source_aws_kms_secret_test.go provider/aws: New data provider to decrypt KMS secrets (#11460) 2017-01-29 21:01:38 +00:00
data_source_aws_partition.go provider/aws: New DataSource: aws_partition (#11675) 2017-02-04 11:54:45 +00:00
data_source_aws_partition_test.go provider/aws: New DataSource: aws_partition (#11675) 2017-02-04 11:54:45 +00:00
data_source_aws_prefix_list.go aws_prefix_list data source - Add ability to select PL by name. (#10248) 2016-11-20 16:21:55 +02:00
data_source_aws_prefix_list_test.go aws_prefix_list data source - Add ability to select PL by name. (#10248) 2016-11-20 16:21:55 +02:00
data_source_aws_redshift_service_account.go Add support for AWS CA Central 1 Region (#10618) 2016-12-09 10:35:07 +01:00
data_source_aws_redshift_service_account_test.go provider/aws: DataSource for RedShift Account ID (#8224) 2016-08-16 17:58:46 +01:00
data_source_aws_region.go provider/aws: aws_region data source 2016-09-24 15:19:33 -07:00
data_source_aws_region_test.go provider/aws: aws_region data source 2016-09-24 15:19:33 -07:00
data_source_aws_route53_zone.go fix error message in route53 data source (#13174) 2017-03-30 11:12:15 +03:00
data_source_aws_route53_zone_test.go provider/aws: Tag VPCs created in our tests to help track down leaks (#14596) 2017-05-17 16:26:40 -05:00
data_source_aws_route_table.go provider/aws: Add IPv6 Support to aws_route_table (#12640) 2017-03-14 12:38:25 +02:00
data_source_aws_route_table_test.go provider/aws: Add IPv6 Support to aws_route_table (#12640) 2017-03-14 12:38:25 +02:00
data_source_aws_s3_bucket_object.go provider/aws: more details on which s3 bucket had an error (#12314) 2017-03-01 23:00:47 +00:00
data_source_aws_s3_bucket_object_test.go provider/aws: Fix Content-Encoding for S3 object acc test (#14400) 2017-05-11 18:35:50 +02:00
data_source_aws_security_group.go provider/aws: Add ARN to security group data source 2017-05-05 10:25:52 -04:00
data_source_aws_security_group_test.go provider/aws: Add ARN to security group data source 2017-05-05 10:25:52 -04:00
data_source_aws_sns.go provider/aws: data_aws_sns_topic (#11752) 2017-02-21 17:47:48 +02:00
data_source_aws_sns_test.go provider/aws: data_aws_sns_topic (#11752) 2017-02-21 17:47:48 +02:00
data_source_aws_subnet.go provider/aws: Add IPv6 outputs to aws_subnet datasource (#13841) 2017-04-21 16:54:55 +03:00
data_source_aws_subnet_ids.go Allow filtering of aws_subnet_ids by tags 2017-04-25 14:46:51 +01:00
data_source_aws_subnet_ids_test.go Allow filtering of aws_subnet_ids by tags 2017-04-25 14:46:51 +01:00
data_source_aws_subnet_test.go provider/aws: Add IPv6 outputs to aws_subnet datasource (#13841) 2017-04-21 16:54:55 +03:00
data_source_aws_vpc.go provider/aws: Add the IPV6 cidr block to the vpc datasource (#12529) 2017-03-08 21:08:37 +02:00
data_source_aws_vpc_endpoint.go Add 'aws_vpc_endpoint' data source. (#11323) 2017-01-23 21:50:38 +00:00
data_source_aws_vpc_endpoint_service.go provider/aws Add aws_vpc_endpoint_service data source (#10261) 2016-12-13 10:40:35 +00:00
data_source_aws_vpc_endpoint_service_test.go provider/aws Add aws_vpc_endpoint_service data source (#10261) 2016-12-13 10:40:35 +00:00
data_source_aws_vpc_endpoint_test.go Add 'aws_vpc_endpoint' data source. (#11323) 2017-01-23 21:50:38 +00:00
data_source_aws_vpc_peering_connection.go provider/aws: Add 'aws_vpc_peering_connection' data source (#10913) 2016-12-30 00:30:51 +00:00
data_source_aws_vpc_peering_connection_test.go provider/aws: Add 'aws_vpc_peering_connection' data source (#10913) 2016-12-30 00:30:51 +00:00
data_source_aws_vpc_test.go fix go vet issue 2017-03-10 11:25:58 -06:00
data_source_aws_vpn_gateway.go Add 'aws_vpn_gateway' data source. (#11886) 2017-02-13 16:24:55 +00:00
data_source_aws_vpn_gateway_test.go Add 'aws_vpn_gateway' data source. (#11886) 2017-02-13 16:24:55 +00:00
diff_aws_policy_test.go provider/aws: Add aws_elasticsearch_domain_policy (#8648) 2017-02-08 13:20:57 +00:00
diff_suppress_funcs.go provider/aws: Add diff suppression & validation for OpenID URL 2017-04-07 22:15:35 +01:00
diff_suppress_funcs_test.go Fix aws_dms_replication_task diff for json with whitespace. (#12380) 2017-03-07 16:00:02 +02:00
ec2_filters.go provider/aws: Add IPv6 outputs to aws_subnet datasource (#13841) 2017-04-21 16:54:55 +03:00
ec2_filters_test.go Make buildEC2AttributeFilterList output sorted 2016-10-14 12:22:45 -04:00
hosted_zones.go provider/aws: Support eu-west-2 (#10470) 2016-12-14 09:33:58 +00:00
hosted_zones_test.go
iam_policy_model.go provider/aws: IAM policy document: normalize wildcard principals 2016-11-01 08:46:34 -07:00
import_aws_api_gateway_account_test.go
import_aws_api_gateway_key_test.go remove debug statements 2016-07-11 15:12:15 -06:00
import_aws_api_gateway_usage_plan_test.go provider/aws: Added API Gateway Usage Plan (#12542) 2017-03-18 14:18:19 +00:00
import_aws_autoscaling_group_test.go providers/aws: add tags for resource_aws_autoscaling_group (#13574) 2017-05-16 10:39:41 +02:00
import_aws_cloudfront_distribution.go provider/aws: Preserve default retain_on_delete in cloudfront import (#13209) 2017-03-31 14:34:51 +03:00
import_aws_cloudfront_distribution_test.go provider/aws: Preserve default retain_on_delete in cloudfront import (#13209) 2017-03-31 14:34:51 +03:00
import_aws_cloudfront_origin_access_identity_test.go provider/aws: Support Import `aws_cloudfront_origin_access_identity` (#7506) 2016-07-11 14:58:25 -06:00
import_aws_cloudtrail_test.go
import_aws_cloudwatch_event_rule_test.go
import_aws_cloudwatch_log_destination_policy_test.go Seed test value names and tidy up whitespace 2017-02-18 18:53:32 +00:00
import_aws_cloudwatch_log_destination_test.go Seed test value names and tidy up whitespace 2017-02-18 18:53:32 +00:00
import_aws_cloudwatch_log_group_test.go provider/aws: Fixing up acceptance tests after seeing concurrent (#10362) 2016-11-25 12:50:19 +00:00
import_aws_cloudwatch_metric_alarm_test.go provider/aws: Add support for treat_missing_data to cloudwatch_metric_alarm (#13358) 2017-04-05 13:17:47 +01:00
import_aws_codecommit_repository_test.go provider/aws: Add import to codecommit_repository 2017-04-12 10:18:49 -04:00
import_aws_codepipeline_test.go provider/aws: New resource codepipeline (#11814) 2017-02-22 19:31:24 +02:00
import_aws_cognito_identity_pool_test.go provider/aws: Added Cognito Identity Pool (#13783) 2017-04-21 12:53:48 +03:00
import_aws_customer_gateway_test.go randomizes all bgp_asn values 2017-04-03 11:17:59 -06:00
import_aws_db_event_subscription.go provider/aws: Fix aws_db_event_subscription import 2017-02-07 11:01:26 -05:00
import_aws_db_event_subscription_test.go provider/aws: Fix aws_db_event_subscription import 2017-02-07 11:01:26 -05:00
import_aws_db_instance_test.go provider/aws: added auto_minor_version_upgrade on aws_rds_cluster_instance (#10284) 2016-11-22 13:33:01 +02:00
import_aws_db_option_group_test.go
import_aws_db_parameter_group_group_test.go
import_aws_db_security_group_test.go provider/aws: Support Import of `aws_db_security_group` 2016-08-02 01:42:54 +10:00
import_aws_db_subnet_group_test.go clean up db subnet name collisiosn 2017-01-30 15:19:24 -06:00
import_aws_dynamodb_table_test.go fix go fmt errors, my bad 2017-04-13 15:24:18 -05:00
import_aws_ebs_volume_test.go
import_aws_ecr_repository_test.go
import_aws_efs_file_system_test.go add randomness to gateway and efs file system tests 2017-03-28 15:07:13 -06:00
import_aws_efs_mount_target_test.go provider/aws: More randomization so our tests can run in parallel 2016-12-15 16:33:10 -06:00
import_aws_elastic_beanstalk_application_test.go provider/aws: Generate random names for Beanstalk tests resources (#10367) 2016-11-25 15:44:41 +00:00
import_aws_elastic_beanstalk_environment_test.go provider/aws: Generate random names for Beanstalk tests resources (#10367) 2016-11-25 15:44:41 +00:00
import_aws_elasticache_cluster_test.go provider/aws: Support Import of aws_elasticache_cluster 2016-09-28 12:29:20 +01:00
import_aws_elasticache_parameter_group_test.go provider/aws: Randomize ElastiCache param group name. Fixes TestAccAWSElasticacheParameterGroupOnly, 2017-04-05 13:01:17 -05:00
import_aws_elasticache_replication_group_test.go provider/aws: Support Import of AWS elasticache_replication_groups 2016-10-03 16:52:29 +01:00
import_aws_elasticache_subnet_group_test.go
import_aws_elb_test.go
import_aws_emr_security_configuration_test.go provider/aws: Add EMR Security Configuration Resource (#14080) 2017-04-28 16:28:49 -05:00
import_aws_flow_log_test.go provider/aws: More randomization so our tests can run in parallel 2016-12-15 16:33:10 -06:00
import_aws_glacier_vault_test.go Randomizes glaciar vault name 2017-04-25 11:30:42 -06:00
import_aws_iam_account_alias_test.go provider/aws: Consolidate IAM Account Alias tests (#14316) 2017-05-09 11:12:07 -05:00
import_aws_iam_account_password_policy_test.go
import_aws_iam_group_test.go provider/aws: Improve IAM Group AccTests 2017-02-02 13:03:39 -05:00
import_aws_iam_policy_test.go Allow importing of aws_iam_role, aws_iam_role_policy, aws_iam_policy and aws_iam_instance_profile 2016-12-01 16:41:23 +02:00
import_aws_iam_role_policy_test.go Allow importing of aws_iam_role, aws_iam_role_policy, aws_iam_policy and aws_iam_instance_profile 2016-12-01 16:41:23 +02:00
import_aws_iam_role_test.go provider/aws: Improved IAM Role description tests (#14220) 2017-05-05 17:03:59 +03:00
import_aws_iam_saml_provider_test.go provider/aws: Allow importing iam_saml_provider (#7605) 2016-07-12 17:04:01 +01:00
import_aws_iam_server_certificate_test.go provider/aws: Support Import of iam_server_certificate (#13065) 2017-03-27 18:49:11 +03:00
import_aws_iam_user_test.go provider/aws: Tidy up IAM user acc tests 2016-10-19 09:22:27 -05:00
import_aws_instance_test.go
import_aws_internet_gateway_test.go
import_aws_key_pair_test.go
import_aws_kms_key_test.go provider/aws: Support Policy DiffSuppression in `aws_kms_key` policy 2016-09-12 09:44:07 +01:00
import_aws_lambda_function_test.go more randomiztion for lambda tests 2016-12-16 10:42:37 -06:00
import_aws_launch_configuration_test.go
import_aws_nat_gateway_test.go
import_aws_network_acl.go
import_aws_network_acl_test.go provider/aws: Correctly check if setting CidrBlock or IPv6CidrBlock in NetworkAcl 2017-03-15 15:51:20 -04:00
import_aws_network_interface_test.go
import_aws_opsworks_custom_layer_test.go Add ability to import AWS OpsWorks Custom Layers 2016-10-07 11:57:11 +01:00
import_aws_opsworks_stack_test.go provider/aws: Rename the Import aws_opsworks_stack import test 2016-10-03 16:45:02 +01:00
import_aws_placement_group_test.go
import_aws_rds_cluster_instance_test.go provider/aws: Support Import `aws_rds_cluster_instance` (#7522) 2016-07-11 14:59:14 -06:00
import_aws_rds_cluster_parameter_group_test.go provider/aws: Randomize names for Parameter Group tests 2016-11-25 21:48:54 +00:00
import_aws_rds_cluster_test.go provider/aws: Support Import `aws_rds_cluster` (#7366) 2016-07-20 19:53:37 +01:00
import_aws_redshift_cluster_test.go
import_aws_redshift_parameter_group_test.go provider/aws: Fix redshift parameter group acctests 2017-02-09 10:18:31 -05:00
import_aws_redshift_security_group_test.go provider/aws: Update Redshift SG Acctests 2017-02-09 10:55:12 -05:00
import_aws_redshift_subnet_group_test.go provider/aws: Randomize redshift subnet group test names (#10366) 2016-11-25 15:37:19 +00:00
import_aws_route53_delegation_set_test.go
import_aws_route53_health_check_test.go
import_aws_route53_record_test.go provider/aws: Add import to route53 record 2017-01-11 17:38:02 -05:00
import_aws_route53_zone_test.go provider/aws: Allow force_destroying records in R53 hosted zone 2016-08-16 19:34:58 +01:00
import_aws_route_table.go provider/aws: Add IPv6 Support to aws_route_table (#12640) 2017-03-14 12:38:25 +02:00
import_aws_route_table_test.go provider/aws: Add IPv6 Support to aws_route_table (#12640) 2017-03-14 12:38:25 +02:00
import_aws_s3_bucket.go provider/aws: Import S3 bucket policy as a separate resource 2016-09-19 08:28:45 +01:00
import_aws_s3_bucket_notification_test.go provider/aws: Support import `aws_s3_bucket_notification` 2016-08-23 08:19:06 +09:00
import_aws_s3_bucket_test.go provider/aws: Added a S3 Bucket domain name attribute (#10088) 2017-01-24 15:54:46 +02:00
import_aws_security_group.go Create rule(s) for prefix-list-only AWS security group ingress/egress permissions on 'terraform import'. 2017-05-15 19:21:28 -04:00
import_aws_security_group_test.go Create rule(s) for prefix-list-only AWS security group ingress/egress permissions on 'terraform import'. 2017-05-15 19:21:28 -04:00
import_aws_ses_receipt_filter_test.go
import_aws_ses_receipt_rule_set_test.go
import_aws_sfn_activity_test.go Added Step Function resources (State Machine & Activity) (#11420) 2017-01-31 20:17:38 +00:00
import_aws_simpledb_domain_test.go provider/aws: Support Import for `aws_simpledb_domain` (#7601) 2016-07-12 13:15:47 +01:00
import_aws_sns_topic_subscription_test.go
import_aws_sns_topic_test.go provider/aws: Randomize SNS topic names in acceptance tests (#14618) 2017-05-18 11:45:19 +02:00
import_aws_spot_datafeed_subscription_test.go provider/aws: Run AWS Spot Datafeed Subscription tests in serial 2017-04-17 11:35:56 -04:00
import_aws_sqs_queue_test.go provider/aws: Added SQS FIFO queues (#10614) 2016-12-12 17:40:59 +00:00
import_aws_subnet_test.go
import_aws_vpc_dhcp_options_test.go
import_aws_vpc_endpoint_test.go
import_aws_vpc_peering_connection_test.go
import_aws_vpc_test.go
import_aws_vpn_connection_test.go randomizes all bgp_asn values 2017-04-03 11:17:59 -06:00
import_aws_vpn_gateway_test.go
network_acl_entry.go provider/aws: Add support for IPv6 to aws_network_acl (#12641) 2017-03-14 12:39:39 +02:00
network_acl_entry_test.go
opsworks_layers.go Add ability to import AWS OpsWorks Custom Layers 2016-10-07 11:57:11 +01:00
provider.go Add 'aws_default_vpc' resource. 2017-05-16 20:15:40 -04:00
provider_test.go provider/aws: Fix Diff Suppress function for aws_db_instance 2017-02-13 12:26:06 -05:00
resource_aws_alb.go Using the timeout schema helper to make alb timeout cofigurable 2017-05-11 14:05:01 +03:00
resource_aws_alb_listener.go provider/aws: Add CertificateNotFound retry waiter to aws_alb_listener (#10180) 2016-11-17 14:49:41 +02:00
resource_aws_alb_listener_rule.go provider/aws: Change of alb_listener_rule listener_arn forces new resource 2017-03-28 21:53:02 +03:00
resource_aws_alb_listener_rule_test.go provider/aws: Change of alb_listener_rule listener_arn forces new resource 2017-03-28 21:53:02 +03:00
resource_aws_alb_listener_test.go provider/aws: Make ALBs internal or add IGW in tests 2017-01-21 22:00:36 +00:00
resource_aws_alb_target_group.go Add `name_prefix` to `aws_alb_target_group` (#13442) 2017-04-07 18:09:51 +03:00
resource_aws_alb_target_group_attachment.go provider/aws: Make alb_target_group_attachment port optional (#13139) 2017-03-29 12:43:23 +03:00
resource_aws_alb_target_group_attachment_test.go provider/aws: Tag VPCs created in our tests to help track down leaks (#14596) 2017-05-17 16:26:40 -05:00
resource_aws_alb_target_group_test.go provider/aws: Tag VPCs created in our tests to help track down leaks (#14596) 2017-05-17 16:26:40 -05:00
resource_aws_alb_test.go Allows zero-value ELB and ALB names 2017-05-08 23:06:59 -07:00
resource_aws_ami.go provider/aws: Increase AMI retry timeouts (#13324) 2017-04-04 15:46:14 +01:00
resource_aws_ami_copy.go provider/aws: Reworked validateArn function to handle empty values (#10833) 2016-12-27 20:52:22 +00:00
resource_aws_ami_copy_test.go provider/aws: Tag VPCs created in our tests to help track down leaks (#14596) 2017-05-17 16:26:40 -05:00
resource_aws_ami_from_instance.go
resource_aws_ami_from_instance_test.go provider/aws: Increase AMI destroy timeout (#12943) 2017-03-22 09:27:23 -04:00
resource_aws_ami_launch_permission.go provider/aws: Fix aws_ami_launch_permission refresh when AMI disappears (#13469) 2017-04-08 20:51:00 +03:00
resource_aws_ami_launch_permission_test.go provider/aws: Fix aws_ami_launch_permission refresh when AMI disappears (#13469) 2017-04-08 20:51:00 +03:00
resource_aws_ami_test.go provider/aws: Improve Checkdestroy to not fail if the ami is not found (it's deleted afterall) and improve tagging 2017-05-15 10:24:43 -05:00
resource_aws_api_gateway_account.go provider/aws: Add AWS error message to retry APIGateway acc update on (#8533) 2016-08-29 20:02:15 +01:00
resource_aws_api_gateway_account_test.go
resource_aws_api_gateway_api_key.go provider/aws: Deprecate the usage of stage_key in favor of usage plans (#12883) 2017-03-20 16:09:14 +00:00
resource_aws_api_gateway_api_key_test.go Allow get/set of aws_api_gateway_api_key value attribute (#9462) 2017-03-20 14:08:37 +00:00
resource_aws_api_gateway_authorizer.go provider/aws: API Gateway Custom Authorizer (#8535) 2016-08-29 20:51:59 +01:00
resource_aws_api_gateway_authorizer_test.go provider/aws: Update lambda_function with runtime for tests 2017-01-05 11:24:17 -06:00
resource_aws_api_gateway_base_path_mapping.go provider/aws: Fixed deletion of aws_api_gateway_base_path_mapping with empty path (#10177) 2016-12-12 22:09:25 +00:00
resource_aws_api_gateway_base_path_mapping_test.go provider/aws: Fixed deletion of aws_api_gateway_base_path_mapping with empty path (#10177) 2016-12-12 22:09:25 +00:00
resource_aws_api_gateway_client_certificate.go provider/aws: Add API Gateway Client Certificate 2016-09-12 10:09:47 +01:00
resource_aws_api_gateway_client_certificate_test.go provider/aws: Add API Gateway Client Certificate 2016-09-12 10:09:47 +01:00
resource_aws_api_gateway_deployment.go provider/aws: Expose execution ARN + invoke URL for APIG deployment (#13889) 2017-04-24 20:43:56 +02:00
resource_aws_api_gateway_deployment_test.go Exposed aws_api_gateway_deployment.created_date attribute 2016-11-14 11:21:36 +01:00
resource_aws_api_gateway_domain_name.go provider/aws: Mark password fields as sensitive (#13147) 2017-03-29 11:15:22 +01:00
resource_aws_api_gateway_domain_name_test.go provider/aws: FIxed the api_gw_domain_name replace operation (#10179) 2016-12-07 21:47:20 +01:00
resource_aws_api_gateway_integration.go provider/aws: Added API Gateway integration update (#13249) 2017-03-31 19:45:06 +03:00
resource_aws_api_gateway_integration_response.go provider/aws: Add support for content_handling to (#11002) 2017-01-09 14:46:21 +00:00
resource_aws_api_gateway_integration_response_test.go provider/aws: Fix acceptance tests w/ missing values (#11377) 2017-01-24 14:09:29 +02:00
resource_aws_api_gateway_integration_test.go provider/aws: Added API Gateway integration update (#13249) 2017-03-31 19:45:06 +03:00
resource_aws_api_gateway_method.go provider/aws: API Gateway Custom Authorizer (#8535) 2016-08-29 20:51:59 +01:00
resource_aws_api_gateway_method_response.go provider/aws: Re-implement api gateway parameter handling (#7794) 2016-08-11 11:49:58 +01:00
resource_aws_api_gateway_method_response_test.go provider/aws: Re-implement api gateway parameter handling (#7794) 2016-08-11 11:49:58 +01:00
resource_aws_api_gateway_method_settings.go provider/aws: Add support for api_gateway_method_settings (#13542) 2017-04-12 16:13:33 +01:00
resource_aws_api_gateway_method_settings_test.go provider/aws: Add support for api_gateway_method_settings (#13542) 2017-04-12 16:13:33 +01:00
resource_aws_api_gateway_method_test.go provider/aws: Randomize names in APIGateway method acc tests (#12989) 2017-03-23 09:30:28 +00:00
resource_aws_api_gateway_model.go
resource_aws_api_gateway_model_test.go
resource_aws_api_gateway_resource.go Fix: path not updated when modifying AWS API Gateway Resource 2017-01-26 21:53:08 +02:00
resource_aws_api_gateway_resource_test.go Fix: path not updated when modifying AWS API Gateway Resource 2017-01-26 21:53:08 +02:00
resource_aws_api_gateway_rest_api.go provider/aws: Raise timeout for deleting APIG REST API (#13414) 2017-04-07 12:29:24 +01:00
resource_aws_api_gateway_rest_api_test.go provider/aws: Fix acceptance tests w/ missing values (#11377) 2017-01-24 14:09:29 +02:00
resource_aws_api_gateway_stage.go provider/aws: Add support for api_gateway_stage (#13540) 2017-04-12 08:35:00 +01:00
resource_aws_api_gateway_stage_test.go provider/aws: Add support for api_gateway_stage (#13540) 2017-04-12 08:35:00 +01:00
resource_aws_api_gateway_usage_plan.go provider/aws: Added API Gateway Usage Plan (#12542) 2017-03-18 14:18:19 +00:00
resource_aws_api_gateway_usage_plan_key.go provider/aws: Added Usage Plan Key resource (#12851) 2017-03-20 13:54:14 +00:00
resource_aws_api_gateway_usage_plan_key_test.go provider/aws: Added Usage Plan Key resource (#12851) 2017-03-20 13:54:14 +00:00
resource_aws_api_gateway_usage_plan_test.go provider/aws: Added API Gateway Usage Plan (#12542) 2017-03-18 14:18:19 +00:00
resource_aws_app_cookie_stickiness_policy.go
resource_aws_app_cookie_stickiness_policy_test.go
resource_aws_appautoscaling_policy.go Update Application Auto Scaling to support scaling an Amazon EC2 Spot fleet. (#8697) 2017-02-02 09:39:22 +00:00
resource_aws_appautoscaling_policy_test.go Update Application Auto Scaling to support scaling an Amazon EC2 Spot fleet. (#8697) 2017-02-02 09:39:22 +00:00
resource_aws_appautoscaling_target.go provider/aws: Add support for EMR clusters to aws_appautoscaling_target (#13368) 2017-04-10 21:46:51 +03:00
resource_aws_appautoscaling_target_test.go provider/aws: Add support for EMR clusters to aws_appautoscaling_target (#13368) 2017-04-10 21:46:51 +03:00
resource_aws_autoscaling_attachment.go provider/aws: Support Attachment of ALB Target Groups to Autoscaling Groups (#12855) 2017-03-23 11:23:23 +02:00
resource_aws_autoscaling_attachment_test.go provider/aws: Support Attachment of ALB Target Groups to Autoscaling Groups (#12855) 2017-03-23 11:23:23 +02:00
resource_aws_autoscaling_group.go providers/aws: add tags for resource_aws_autoscaling_group (#13574) 2017-05-16 10:39:41 +02:00
resource_aws_autoscaling_group_test.go providers/aws: add tags for resource_aws_autoscaling_group (#13574) 2017-05-16 10:39:41 +02:00
resource_aws_autoscaling_group_waiting.go provider/aws: Show last scaling activity when ASG creation/update fails (#14480) 2017-05-15 10:30:10 +02:00
resource_aws_autoscaling_group_waiting_test.go providers/aws: support for lifecycle hooks at ASG creation 2016-09-01 10:21:37 -07:00
resource_aws_autoscaling_lifecycle_hook.go provider/aws: Improve error message from ASG Hooks 2017-01-23 17:35:47 +00:00
resource_aws_autoscaling_lifecycle_hook_test.go Fixes TestAccAWSAutoscalingLifecycleHook_omitDefaultResult 2017-04-17 09:12:42 -06:00
resource_aws_autoscaling_notification.go
resource_aws_autoscaling_notification_test.go
resource_aws_autoscaling_policy.go provider/aws: Set aws_autoscaling_policy metric_aggregation_type to be (#10904) 2016-12-28 23:30:43 +00:00
resource_aws_autoscaling_policy_test.go always set scaling_adjustment when policy_type = SimpleScaling 2016-09-16 21:00:57 -05:00
resource_aws_autoscaling_schedule.go provider/aws: Refresh aws_autoscaling_schedule from state when autoscaling_group (#12312) 2017-02-28 22:08:22 +00:00
resource_aws_autoscaling_schedule_test.go provider/aws: Fix acceptance tests for autoscaling schedule 2017-01-30 15:07:10 -05:00
resource_aws_cloudformation_stack.go Nothing to update in cloudformation should not result in errors. 2017-05-13 17:08:08 -04:00
resource_aws_cloudformation_stack_test.go provider/aws: Randomize CloudFormation acceptance tests (#14623) 2017-05-18 15:39:51 +02:00
resource_aws_cloudfront_distribution.go Ensure schemas of `default_cache_behavior` and `cache_behavior` are same except `path_pattern` (#12628) 2017-05-18 16:42:04 +03:00
resource_aws_cloudfront_distribution_test.go provider/aws: Add support for CustomOrigin timeouts to aws_cloudfront_distribution (#13367) 2017-04-27 02:13:59 +12:00
resource_aws_cloudfront_origin_access_identity.go provider/aws: Allow ARN identifier to be set 2017-01-23 11:30:28 -05:00
resource_aws_cloudfront_origin_access_identity_test.go provider/aws: Allow ARN identifier to be set 2017-01-23 11:30:28 -05:00
resource_aws_cloudtrail.go provider/aws: Enforced kms_key_* attributes to be ARNs (#10356) 2016-11-30 13:50:26 +02:00
resource_aws_cloudtrail_test.go provider/aws: Change running of CloudTrail tests to not be parallel (#13982) 2017-04-27 02:41:47 +12:00
resource_aws_cloudwatch_event_rule.go Allow buildPutRuleInputStruct helper function to return an error. 2016-09-22 15:37:12 +01:00
resource_aws_cloudwatch_event_rule_test.go provider/aws: Add JSON validation to the aws_cloudwatch_event_rule resource. (#8897) 2016-09-19 23:47:17 +01:00
resource_aws_cloudwatch_event_target.go provider/aws: Support run_command_parameters in aws_cloudwatch_event_target (#14067) 2017-05-04 20:46:11 +03:00
resource_aws_cloudwatch_event_target_test.go provider/aws: Update TestAccAWSCloudWatchEventTarget_ssmDocument / TestAccAWSCloudWatchEventTarget_full tests to avoid name collisions 2017-05-08 16:22:58 -05:00
resource_aws_cloudwatch_log_destination.go Seed test value names and tidy up whitespace 2017-02-18 18:53:32 +00:00
resource_aws_cloudwatch_log_destination_policy.go Seed test value names and tidy up whitespace 2017-02-18 18:53:32 +00:00
resource_aws_cloudwatch_log_destination_policy_test.go Seed test value names and tidy up whitespace 2017-02-18 18:53:32 +00:00
resource_aws_cloudwatch_log_destination_test.go Seed test value names and tidy up whitespace 2017-02-18 18:53:32 +00:00
resource_aws_cloudwatch_log_group.go reverse if statement 2017-05-09 12:19:50 -04:00
resource_aws_cloudwatch_log_group_test.go Add `name_prefix` support to `aws_cloudwatch_log_group` (#13273) 2017-04-17 01:50:52 +03:00
resource_aws_cloudwatch_log_metric_filter.go
resource_aws_cloudwatch_log_metric_filter_test.go provider/aws: Fix Cloudwatch Log acceptance tests 2017-01-31 12:06:06 -05:00
resource_aws_cloudwatch_log_stream.go fix wrong usage of hashicorp/errwrap (#11500) 2017-01-29 19:19:48 +00:00
resource_aws_cloudwatch_log_stream_test.go provider/aws: `aws_cloudwatch_log_stream` resource 2016-09-04 00:26:02 +03:00
resource_aws_cloudwatch_log_subscription_filter.go provider/aws: Refresh cloudwatch log subscription filter on 404 (#12333) 2017-03-01 22:12:50 +00:00
resource_aws_cloudwatch_log_subscription_filter_test.go provider/aws: fix TestAccAWSCloudwatchLogSubscriptionFilter_basic by linking the name 2017-04-05 13:48:13 -05:00
resource_aws_cloudwatch_metric_alarm.go provider/aws: Add support for evaluate_low_sample_count_percentiles to cloudwatch_metric_alarm (#13371) 2017-04-05 19:28:57 +03:00
resource_aws_cloudwatch_metric_alarm_migrate.go provider/aws: Add support for treat_missing_data to cloudwatch_metric_alarm (#13358) 2017-04-05 13:17:47 +01:00
resource_aws_cloudwatch_metric_alarm_migrate_test.go provider/aws: Add support for treat_missing_data to cloudwatch_metric_alarm (#13358) 2017-04-05 13:17:47 +01:00
resource_aws_cloudwatch_metric_alarm_test.go provider/aws: Add support for evaluate_low_sample_count_percentiles to cloudwatch_metric_alarm (#13371) 2017-04-05 19:28:57 +03:00
resource_aws_codebuild_project.go provider/aws: Prevent panic when setting AWS CodeBuild Source to state (#12915) 2017-03-21 15:33:32 +00:00
resource_aws_codebuild_project_migrate.go provider/aws: Rename 'timeout' to 'build_timeout' for Codebuild (#12503) 2017-03-08 09:29:54 -06:00
resource_aws_codebuild_project_migrate_test.go provider/aws: Rename 'timeout' to 'build_timeout' for Codebuild (#12503) 2017-03-08 09:29:54 -06:00
resource_aws_codebuild_project_test.go provider/aws: Fix the aws_codebuild_project acceptance tests (#14626) 2017-05-18 16:19:56 +03:00
resource_aws_codecommit_repository.go provider/aws: Add import to codecommit_repository 2017-04-12 10:18:49 -04:00
resource_aws_codecommit_repository_test.go provider/aws: Add import to codecommit_repository 2017-04-12 10:18:49 -04:00
resource_aws_codecommit_trigger.go fix typo that causes serialization to fail when events is non-empty (#11839) 2017-02-10 11:27:08 +00:00
resource_aws_codecommit_trigger_test.go provider/aws: Removal of test for changes as it forces a new resource 2016-09-12 10:54:15 +01:00
resource_aws_codedeploy_app.go provider/aws: Remove unsafe ptr dereferencing [A-C]* (#8519) 2016-08-28 19:25:30 +01:00
resource_aws_codedeploy_app_test.go
resource_aws_codedeploy_deployment_config.go provider/aws: New Resource aws_codedeploy_deployment_config (#11062) 2017-01-09 19:17:09 +00:00
resource_aws_codedeploy_deployment_config_test.go provider/aws: New Resource aws_codedeploy_deployment_config (#11062) 2017-01-09 19:17:09 +00:00
resource_aws_codedeploy_deployment_group.go Service role is not updated on AWS for a CodeDeploy deployment group (#9866) 2016-12-07 13:34:58 +01:00
resource_aws_codedeploy_deployment_group_test.go Service role is not updated on AWS for a CodeDeploy deployment group (#9866) 2016-12-07 13:34:58 +01:00
resource_aws_codepipeline.go Propagate AWS CodePipeline action roles (#14263) 2017-05-16 11:55:42 +03:00
resource_aws_codepipeline_test.go Propagate AWS CodePipeline action roles (#14263) 2017-05-16 11:55:42 +03:00
resource_aws_cognito_identity_pool.go provider/aws: Added Cognito Identity Pool (#13783) 2017-04-21 12:53:48 +03:00
resource_aws_cognito_identity_pool_test.go provider/aws: Added Cognito Identity Pool (#13783) 2017-04-21 12:53:48 +03:00
resource_aws_config_config_rule.go provider/aws: Retry deletion of AWSConfig Rule on ResourceInUseException (#14269) 2017-05-08 11:15:12 +02:00
resource_aws_config_config_rule_test.go provider/aws: Run all AWSConfig acc tests sequentially (#13658) 2017-04-18 17:59:44 +03:00
resource_aws_config_configuration_recorder.go provider/aws: Add aws_config_configuration_recorder 2017-02-13 14:01:32 +00:00
resource_aws_config_configuration_recorder_status.go provider/aws: Add aws_config_configuration_recorder_status 2017-02-13 14:01:34 +00:00
resource_aws_config_configuration_recorder_status_test.go provider/aws: Run all AWSConfig acc tests sequentially (#13658) 2017-04-18 17:59:44 +03:00
resource_aws_config_configuration_recorder_test.go provider/aws: Run all AWSConfig acc tests sequentially (#13658) 2017-04-18 17:59:44 +03:00
resource_aws_config_delivery_channel.go provider/aws: Add aws_config_delivery_channel 2017-02-13 14:01:35 +00:00
resource_aws_config_delivery_channel_test.go provider/aws: Run all AWSConfig acc tests sequentially (#13658) 2017-04-18 17:59:44 +03:00
resource_aws_config_test.go provider/aws: Run all AWSConfig acc tests sequentially (#13658) 2017-04-18 17:59:44 +03:00
resource_aws_customer_gateway.go provider/aws: Error on trying to recreate an existing customer gateway (#12501) 2017-03-08 21:11:59 +02:00
resource_aws_customer_gateway_test.go final fix after merge with master 2017-04-03 13:27:43 -06:00
resource_aws_db_event_subscription.go provider/aws: Fix aws_db_event_subscription import 2017-02-07 11:01:26 -05:00
resource_aws_db_event_subscription_test.go provider/aws: Fix aws_db_event_subscription acceptance test 2017-02-06 18:24:15 -05:00
resource_aws_db_instance.go Add support for IAMDatabaseAuthenticationEnabled 2017-04-29 20:32:21 +01:00
resource_aws_db_instance_test.go provider/aws: Tag VPCs created in our tests to help track down leaks (#14596) 2017-05-17 16:26:40 -05:00
resource_aws_db_option_group.go provider/aws: Force lowercasing for DB Option group name or name_prefix (#14366) 2017-05-10 15:42:10 -05:00
resource_aws_db_option_group_test.go provider/aws: Force lowercasing for DB Option group name or name_prefix (#14366) 2017-05-10 15:42:10 -05:00
resource_aws_db_parameter_group.go Fix DB parameter group name property 2017-04-03 09:57:14 +10:00
resource_aws_db_parameter_group_test.go Fix DB parameter group name property 2017-04-03 09:57:14 +10:00
resource_aws_db_security_group.go Add partition to remaining ARN builders. 2016-10-08 00:52:50 -04:00
resource_aws_db_security_group_test.go
resource_aws_db_snapshot.go provider/aws: Add new aws_db_snapshot data source (#10291) 2017-05-15 20:17:26 +03:00
resource_aws_db_snapshot_test.go provider/aws: Add new aws_db_snapshot data source (#10291) 2017-05-15 20:17:26 +03:00
resource_aws_db_subnet_group.go Add `name_prefix` to RDS resources (#13232) 2017-03-31 20:22:57 +03:00
resource_aws_db_subnet_group_test.go provider/aws: Tag VPCs created in our tests to help track down leaks (#14596) 2017-05-17 16:26:40 -05:00
resource_aws_default_network_acl.go Correct handling of network ACL default IPv6 ingress/egress rules. (#12835) 2017-03-27 12:42:49 +03:00
resource_aws_default_network_acl_test.go Correct handling of network ACL default IPv6 ingress/egress rules. (#12835) 2017-03-27 12:42:49 +03:00
resource_aws_default_route_table.go provider/aws: Add support for IPv6 to aws_default_route_table (#12642) 2017-03-14 12:39:08 +02:00
resource_aws_default_route_table_test.go provider/aws: Add support for IPv6 to aws_default_route_table (#12642) 2017-03-14 12:39:08 +02:00
resource_aws_default_security_group.go provider/aws: Add Default Security Group Resource (#8861) 2016-09-15 13:59:20 -05:00
resource_aws_default_security_group_test.go provider/aws: Tag VPCs created in our tests to help track down leaks (#14596) 2017-05-17 16:26:40 -05:00
resource_aws_default_subnet.go Add 'aws_default_subnet' resource. (#14476) 2017-05-16 11:40:56 +03:00
resource_aws_default_subnet_test.go Add 'aws_default_subnet' resource. (#14476) 2017-05-16 11:40:56 +03:00
resource_aws_default_vpc.go Add 'aws_default_vpc' resource. 2017-05-16 20:15:40 -04:00
resource_aws_default_vpc_dhcp_options.go Add 'aws_default_vpc_dhcp_options' resource. (#14475) 2017-05-16 11:44:23 +03:00
resource_aws_default_vpc_dhcp_options_test.go Add 'aws_default_vpc_dhcp_options' resource. (#14475) 2017-05-16 11:44:23 +03:00
resource_aws_default_vpc_test.go Add 'aws_default_vpc' resource. 2017-05-16 20:15:40 -04:00
resource_aws_devicefarm_project.go provider/aws: add devicefarm project resource 2017-05-09 09:48:44 +02:00
resource_aws_devicefarm_project_test.go provider/aws: Add AWS devicefarm docs to AWS navbar 2017-05-11 14:53:49 +03:00
resource_aws_directory_service_directory.go provider/aws: Mark password fields as sensitive (#13147) 2017-03-29 11:15:22 +01:00
resource_aws_directory_service_directory_test.go provider/aws: Tag VPCs created in our tests to help track down leaks (#14596) 2017-05-17 16:26:40 -05:00
resource_aws_dms_certificate.go provider/aws: Add AWS DMS (data migration service) resources (#11122) 2017-02-02 10:30:05 +00:00
resource_aws_dms_certificate_test.go provider/aws: Add AWS DMS (data migration service) resources (#11122) 2017-02-02 10:30:05 +00:00
resource_aws_dms_endpoint.go provider/aws: Migrate aws_dms_* resources away from AWS waiters (#13291) 2017-04-05 06:48:37 +01:00
resource_aws_dms_endpoint_test.go provider/aws: Migrate aws_dms_* resources away from AWS waiters (#13291) 2017-04-05 06:48:37 +01:00
resource_aws_dms_replication_instance.go provider/aws: Migrate aws_dms_* resources away from AWS waiters (#13291) 2017-04-05 06:48:37 +01:00
resource_aws_dms_replication_instance_test.go provider/aws: Migrate aws_dms_* resources away from AWS waiters (#13291) 2017-04-05 06:48:37 +01:00
resource_aws_dms_replication_subnet_group.go provider/aws: Add AWS DMS (data migration service) resources (#11122) 2017-02-02 10:30:05 +00:00
resource_aws_dms_replication_subnet_group_test.go provider/aws: Migrate aws_dms_* resources away from AWS waiters (#13291) 2017-04-05 06:48:37 +01:00
resource_aws_dms_replication_task.go provider/aws: Add support for aws_dms_replication_task available states (#13697) 2017-04-17 16:00:41 +03:00
resource_aws_dms_replication_task_test.go provider/aws: Migrate aws_dms_* resources away from AWS waiters (#13291) 2017-04-05 06:48:37 +01:00
resource_aws_dynamodb_table.go provider/aws: Handle LimitExceededException for subscriber limits 2017-05-17 08:59:47 -04:00
resource_aws_dynamodb_table_migrate.go provider/aws: Fix DynamoDB issues about GSIs indexes (#13256) 2017-04-07 10:13:00 -05:00
resource_aws_dynamodb_table_test.go Fix vet issue 2017-05-01 19:56:21 +01:00
resource_aws_ebs_snapshot.go provider/aws: New Resource aws_ebs_snapshot (#10017) 2016-11-21 12:40:22 +02:00
resource_aws_ebs_snapshot_test.go provider/aws: New Resource aws_ebs_snapshot (#10017) 2016-11-21 12:40:22 +02:00
resource_aws_ebs_volume.go provider/aws: Update aws_ebs_volume when attached (#14005) 2017-04-27 07:30:23 +12:00
resource_aws_ebs_volume_test.go provider/aws: Update aws_ebs_volume when attached (#14005) 2017-04-27 07:30:23 +12:00
resource_aws_ecr_repository.go provider/aws: Remove hardcoded https from the ecr repository (#11307) 2017-01-20 17:34:52 +00:00
resource_aws_ecr_repository_policy.go provider/aws: Remove unsafe ptr dereferencing from ECS/ECR (#8514) 2016-08-28 17:15:45 +01:00
resource_aws_ecr_repository_policy_test.go
resource_aws_ecr_repository_test.go provider/aws: Remove hardcoded https from the ecr repository (#11307) 2017-01-20 17:34:52 +00:00
resource_aws_ecs_cluster.go provider/aws: Remove unsafe ptr dereferencing from ECS/ECR (#8514) 2016-08-28 17:15:45 +01:00
resource_aws_ecs_cluster_test.go
resource_aws_ecs_service.go provider/aws: making the target_group_arn optional for the ecs_service hash func 2017-04-10 16:37:40 +03:00
resource_aws_ecs_service_test.go Randomize mongodb names 2017-04-24 15:23:52 -06:00
resource_aws_ecs_task_definition.go provider/aws: Validate aws_ecs_task_definition.container_definitions (#12161) 2017-04-01 17:31:32 +01:00
resource_aws_ecs_task_definition_test.go provider/aws: Validate aws_ecs_task_definition.container_definitions (#12161) 2017-04-01 17:31:32 +01:00
resource_aws_efs_file_system.go provider/aws: reading multiple pages of aws_efs_file_system tags (#12328) 2017-03-01 22:09:13 +00:00
resource_aws_efs_file_system_test.go remove some manual names to allow the automatic random names, avoid some possible conflicts 2017-04-07 15:15:18 -05:00
resource_aws_efs_mount_target.go provider/aws: Updating the aws_efs_mount_target dns_name (#11023) 2017-01-04 23:12:45 +00:00
resource_aws_efs_mount_target_test.go provider/aws: Tag VPCs created in our tests to help track down leaks (#14596) 2017-05-17 16:26:40 -05:00
resource_aws_egress_only_internet_gateway.go provider/aws: Implement IPV6 Support for ec2 / VPC (#10538) 2017-03-01 16:16:59 +00:00
resource_aws_egress_only_internet_gateway_test.go provider/aws: Tag VPCs created in our tests to help track down leaks (#14596) 2017-05-17 16:26:40 -05:00
resource_aws_eip.go provider/aws: Increase EIP update timeout (#14381) 2017-05-11 12:51:48 +02:00
resource_aws_eip_association.go provider/aws: Refresh AWS EIP association from state when not found 2016-09-26 16:50:51 +01:00
resource_aws_eip_association_test.go provider/aws: Tag VPCs created in our tests to help track down leaks (#14596) 2017-05-17 16:26:40 -05:00
resource_aws_eip_test.go provider/aws: Tag VPCs created in our tests to help track down leaks (#14596) 2017-05-17 16:26:40 -05:00
resource_aws_elastic_beanstalk_application.go
resource_aws_elastic_beanstalk_application_test.go
resource_aws_elastic_beanstalk_application_version.go provider/aws: Elastic Beanstalk Application Version (#5770) 2017-02-17 17:54:07 +02:00
resource_aws_elastic_beanstalk_application_version_test.go provider/aws: increase randomization in beantsalk app version tests 2017-03-08 15:25:41 -06:00
resource_aws_elastic_beanstalk_configuration_template.go
resource_aws_elastic_beanstalk_configuration_template_test.go randomize Beanstalk test name 2017-01-30 15:06:29 -06:00
resource_aws_elastic_beanstalk_environment.go provider/aws: Increase Beanstalk 'ready' timeout (#13359) 2017-04-05 13:11:55 +01:00
resource_aws_elastic_beanstalk_environment_migrate.go
resource_aws_elastic_beanstalk_environment_migrate_test.go
resource_aws_elastic_beanstalk_environment_test.go provider/aws: Tag VPCs created in our tests to help track down leaks (#14596) 2017-05-17 16:26:40 -05:00
resource_aws_elastic_transcoder_pipeline.go provider/aws: Enforced kms_key_* attributes to be ARNs (#10356) 2016-11-30 13:50:26 +02:00
resource_aws_elastic_transcoder_pipeline_test.go fix transcoder tests 2017-02-03 10:40:33 -06:00
resource_aws_elastic_transcoder_preset.go providers/aws: Update ElasticTranscoderPreset to have default for MaxFrameRate (#13422) 2017-04-07 09:10:29 -05:00
resource_aws_elastic_transcoder_preset_test.go
resource_aws_elasticache_cluster.go provider/aws: Wait for snapshotting in delete of ElastiCache cluster 2017-04-14 12:54:38 -05:00
resource_aws_elasticache_cluster_test.go provider/aws: Update ElasticCache cluster redis params for new default 2016-10-19 09:43:27 -05:00
resource_aws_elasticache_parameter_group.go
resource_aws_elasticache_parameter_group_test.go provider/aws: Randomize ElastiCache param group name. Fixes TestAccAWSElasticacheParameterGroupOnly, 2017-04-05 13:01:17 -05:00
resource_aws_elasticache_replication_group.go provider/aws: Slight design change to aws_elasticache_replication_group 2017-05-09 20:37:28 +03:00
resource_aws_elasticache_replication_group_test.go provider/aws: Slight design change to aws_elasticache_replication_group 2017-05-09 20:37:28 +03:00
resource_aws_elasticache_security_group.go
resource_aws_elasticache_security_group_test.go
resource_aws_elasticache_subnet_group.go
resource_aws_elasticache_subnet_group_test.go
resource_aws_elasticsearch_domain.go provider/aws: Fix ES Domain acceptance tests (#13160) 2017-03-29 18:07:11 +01:00
resource_aws_elasticsearch_domain_policy.go provider/aws: Add aws_elasticsearch_domain_policy (#8648) 2017-02-08 13:20:57 +00:00
resource_aws_elasticsearch_domain_policy_test.go provider/aws: Fix ES Domain acceptance tests (#13160) 2017-03-29 18:07:11 +01:00
resource_aws_elasticsearch_domain_test.go provider/aws: Fix wrong config in ES domain acceptance test (#13362) 2017-04-05 12:27:56 +01:00
resource_aws_elb.go provider/aws: Increase timeouts for ELB (#13161) 2017-03-29 18:10:38 +01:00
resource_aws_elb_attachment.go
resource_aws_elb_attachment_test.go
resource_aws_elb_test.go Allows zero-value ELB and ALB names 2017-05-08 23:06:59 -07:00
resource_aws_emr_cluster.go provider/aws: Update `aws_emr_cluster` to support Security Configuration (#14133) 2017-05-01 17:02:59 -05:00
resource_aws_emr_cluster_test.go provider/aws: Update `aws_emr_cluster` to support Security Configuration (#14133) 2017-05-01 17:02:59 -05:00
resource_aws_emr_instance_group.go provider/aws: Add EBS Volume support for EMR Instance Groups 2017-01-25 10:29:41 -05:00
resource_aws_emr_instance_group_test.go provider/aws: Add EBS Volume support for EMR Instance Groups 2017-01-25 10:29:41 -05:00
resource_aws_emr_security_configuration.go provider/aws: Add EMR Security Configuration Resource (#14080) 2017-04-28 16:28:49 -05:00
resource_aws_emr_security_configuration_test.go provider/aws: Add EMR Security Configuration Resource (#14080) 2017-04-28 16:28:49 -05:00
resource_aws_flow_log.go
resource_aws_flow_log_test.go provider/aws: Randomize a flow log test 2017-03-03 11:55:58 -06:00
resource_aws_glacier_vault.go Handle JSON parsing error in the ReadFunc for the access policy document. 2016-09-22 00:23:38 +01:00
resource_aws_glacier_vault_test.go Randomizes basic test name 2017-04-25 11:44:42 -06:00
resource_aws_iam_access_key.go provider/aws: Save secret to state in iam_access_key if pgp key not found 2016-12-13 09:32:04 -06:00
resource_aws_iam_access_key_test.go provider/aws: Fix acceptance tests w/ missing values (#11377) 2017-01-24 14:09:29 +02:00
resource_aws_iam_account_alias.go Add `aws_iam_account_alias` resource (#12648) 2017-03-14 15:35:38 +02:00
resource_aws_iam_account_alias_test.go provider/aws: Consolidate IAM Account Alias tests (#14316) 2017-05-09 11:12:07 -05:00
resource_aws_iam_account_password_policy.go
resource_aws_iam_account_password_policy_test.go
resource_aws_iam_group.go provider/aws: AWS IAM, User and Role allow + in the name (#9991) 2016-11-09 15:54:15 +00:00
resource_aws_iam_group_membership.go
resource_aws_iam_group_membership_test.go provider/aws: Test for policy attachment pagination 2016-08-15 13:48:42 -07:00
resource_aws_iam_group_policy.go Allow `name_prefix` to be used with various IAM resources (#12658) 2017-03-17 16:48:42 +00:00
resource_aws_iam_group_policy_attachment.go
resource_aws_iam_group_policy_attachment_test.go
resource_aws_iam_group_policy_test.go provider/aws: Update IAM Group+User Policy Tests (#12950) 2017-03-22 09:06:23 -04:00
resource_aws_iam_group_test.go provider/aws: Improve IAM Group AccTests 2017-02-02 13:03:39 -05:00
resource_aws_iam_instance_profile.go `roles` deprecated in docs & code error message (#13622) 2017-04-20 23:02:48 +03:00
resource_aws_iam_instance_profile_test.go provider/aws: Fix-up TestAccAWSIAMInstanceProfile_missingRoleThrowsError 2017-04-24 10:24:34 -05:00
resource_aws_iam_openid_connect_provider.go aws: Allow import of OID connect provider + allow disappearance 2017-04-07 22:15:37 +01:00
resource_aws_iam_openid_connect_provider_test.go aws: Allow import of OID connect provider + allow disappearance 2017-04-07 22:15:37 +01:00
resource_aws_iam_policy.go provider/aws: Fixing the broken build of the aws_iam_policy resource 2016-12-01 16:50:28 +02:00
resource_aws_iam_policy_attachment.go provider/aws: Validate `aws_iam_policy_attachment` Name parameter to stop being empty (#8441) 2016-08-24 21:28:41 +01:00
resource_aws_iam_policy_attachment_test.go aws: Randomize IAM policy name in acc test 2017-04-04 11:07:55 +01:00
resource_aws_iam_policy_test.go provider/aws: removal of the duplicate import aws_iam_instance_profile test 2016-12-01 16:55:53 +02:00
resource_aws_iam_role.go provider/aws: Improved IAM Role description tests (#14220) 2017-05-05 17:03:59 +03:00
resource_aws_iam_role_policy.go fix a word in aws_iam_role_policy error msg (#13794) 2017-04-20 06:48:58 +01:00
resource_aws_iam_role_policy_attachment.go provider/aws: Query all pages of policy attachment 2016-08-15 12:49:09 -07:00
resource_aws_iam_role_policy_attachment_test.go update test-resource names 2017-03-23 09:27:44 -04:00
resource_aws_iam_role_policy_test.go Allow `name_prefix` to be used with various IAM resources (#12658) 2017-03-17 16:48:42 +00:00
resource_aws_iam_role_test.go provider/aws: Improved IAM Role description tests (#14220) 2017-05-05 17:03:59 +03:00
resource_aws_iam_saml_provider.go provider/aws: Refresh iam saml provider from state on 404 (#12602) 2017-03-13 10:18:29 +02:00
resource_aws_iam_saml_provider_test.go provider/aws: Allow ARN identifier to be set 2017-01-23 11:30:28 -05:00
resource_aws_iam_server_certificate.go provider/aws: Increase timeout for retrying creation of IAM server cert (#14609) 2017-05-18 11:43:50 +02:00
resource_aws_iam_server_certificate_test.go provider/aws: Support Import of iam_server_certificate (#13065) 2017-03-27 18:49:11 +03:00
resource_aws_iam_user.go provider/aws: Remove IAM user's MFA devices with `force_destroy` #5908 (#10262) 2016-11-21 10:17:27 +02:00
resource_aws_iam_user_login_profile.go provider/aws: Extract helper/encryption library 2016-12-06 14:24:21 -06:00
resource_aws_iam_user_login_profile_test.go Removed newline from keybase username 2017-04-04 09:33:49 -06:00
resource_aws_iam_user_policy.go Allow `name_prefix` to be used with various IAM resources (#12658) 2017-03-17 16:48:42 +00:00
resource_aws_iam_user_policy_attachment.go
resource_aws_iam_user_policy_attachment_test.go provider/aws: Make iam_user_policy_attachment_test work as expected: (#9733) 2016-10-31 09:52:38 +00:00
resource_aws_iam_user_policy_test.go provider/aws: Update IAM Group+User Policy Tests (#12950) 2017-03-22 09:06:23 -04:00
resource_aws_iam_user_ssh_key.go
resource_aws_iam_user_ssh_key_test.go
resource_aws_iam_user_test.go provider/aws: AWS IAM, User and Role allow + in the name (#9991) 2016-11-09 15:54:15 +00:00
resource_aws_inspector_assessment_target.go provider/aws: Update of inspector_assessment_target should use ARN not (#12115) 2017-02-20 20:12:17 +02:00
resource_aws_inspector_assessment_target_test.go provider/aws: Update of inspector_assessment_target should use ARN not (#12115) 2017-02-20 20:12:17 +02:00
resource_aws_inspector_assessment_template.go provider/aws: Add Inspector Support (#11217) 2017-01-17 17:30:46 +00:00
resource_aws_inspector_assessment_template_test.go provider/aws: Randomize acc tests for Inspector Assesment Tpl (#12990) 2017-03-23 09:30:45 +00:00
resource_aws_inspector_resource_group.go provider/aws: Add Inspector Support (#11217) 2017-01-17 17:30:46 +00:00
resource_aws_inspector_resource_group_test.go provider/aws: Add Inspector Support (#11217) 2017-01-17 17:30:46 +00:00
resource_aws_instance.go provider/aws: Fall back to old tagging mechanism for AWS gov and aws China (#14627) 2017-05-18 17:28:37 +03:00
resource_aws_instance_migrate.go provider/aws: Support aws_instance and volume tagging on creation (#13945) 2017-04-26 10:12:38 +12:00
resource_aws_instance_migrate_test.go
resource_aws_instance_test.go provider/aws: Tag VPCs created in our tests to help track down leaks (#14596) 2017-05-17 16:26:40 -05:00
resource_aws_internet_gateway.go Merge pull request #8454 from Originate/mb-fix-internet-gateway-deletion 2016-09-04 00:55:37 +03:00
resource_aws_internet_gateway_test.go provider/aws: Tag VPCs created in our tests to help track down leaks (#14596) 2017-05-17 16:26:40 -05:00
resource_aws_key_pair.go aws_key_pair: Ensure key_name attribute is set 2017-01-01 12:17:43 -08:00
resource_aws_key_pair_migrate.go
resource_aws_key_pair_migrate_test.go
resource_aws_key_pair_test.go provider/aws: Add key_name_prefix argument to aws_key_pair resource (#9993) 2016-11-09 15:35:51 +00:00
resource_aws_kinesis_firehose_delivery_stream.go provider/aws: Mark password fields as sensitive (#13147) 2017-03-29 11:15:22 +01:00
resource_aws_kinesis_firehose_delivery_stream_migrate.go
resource_aws_kinesis_firehose_delivery_stream_migrate_test.go
resource_aws_kinesis_firehose_delivery_stream_test.go provider/aws: Fix some acc tests (more, again) (#13639) 2017-04-13 15:00:41 -05:00
resource_aws_kinesis_stream.go provider/aws: Add support for importing Kinesis Streams (#14278) 2017-05-08 14:11:23 +03:00
resource_aws_kinesis_stream_test.go provider/aws: Add support for importing Kinesis Streams (#14278) 2017-05-08 14:11:23 +03:00
resource_aws_kms_alias.go provider/aws: Add aws_kms_alias datasource (#13669) 2017-04-18 15:29:14 +03:00
resource_aws_kms_alias_test.go provider/aws: Update KMS Alias acceptance tests 2017-02-09 09:49:34 -05:00
resource_aws_kms_key.go provider/aws: Retry setting KMS key rotation on DisabledException (#14029) 2017-04-27 12:42:36 +01:00
resource_aws_kms_key_test.go provider/aws: Fix KMS Key reading with Exists method (#13348) 2017-04-05 12:48:11 -05:00
resource_aws_lambda_alias.go Drop alias from state file if missing from lambda. (#10759) 2016-12-15 15:33:38 -06:00
resource_aws_lambda_alias_test.go provider/aws: Update lambda role name to avoid collision 2017-03-13 13:42:15 -05:00
resource_aws_lambda_event_source_mapping.go provider/aws: Refresh `aws_lambda_event_source_mapping` from state when (#8378) 2016-08-22 17:05:48 +01:00
resource_aws_lambda_event_source_mapping_test.go random some lambda tests 2017-02-16 10:43:41 -06:00
resource_aws_lambda_function.go provider/aws: Expose invoke ARN from Lambda function (for APIG) (#13890) 2017-04-24 20:47:11 +02:00
resource_aws_lambda_function_test.go provider/aws: Tag VPCs created in our tests to help track down leaks (#14596) 2017-05-17 16:26:40 -05:00
resource_aws_lambda_permission.go Fixes issue for cross account iam role with aws_lambda_permission (#13865) 2017-04-23 11:44:07 +02:00
resource_aws_lambda_permission_test.go Fixes issue for cross account iam role with aws_lambda_permission (#13865) 2017-04-23 11:44:07 +02:00
resource_aws_launch_configuration.go provider/aws: ForceNew aws_launch_config when root_block_device changes (#14507) 2017-05-15 20:18:40 +03:00
resource_aws_launch_configuration_test.go provider/aws: Tag VPCs created in our tests to help track down leaks (#14596) 2017-05-17 16:26:40 -05:00
resource_aws_lb_cookie_stickiness_policy.go provider/aws: allow destroy of LB stickiness policy with missing LB (#11462) 2017-01-27 21:14:23 +02:00
resource_aws_lb_cookie_stickiness_policy_test.go provider/aws: allow destroy of LB stickiness policy with missing LB (#11462) 2017-01-27 21:14:23 +02:00
resource_aws_lb_ssl_negotiation_policy.go aws/provider: Fixes issue for aws_lb_ssl_negotiation_policy of already deleted ELB (#12360) 2017-03-06 13:48:35 +02:00
resource_aws_lb_ssl_negotiation_policy_test.go aws/provider: Fixes issue for aws_lb_ssl_negotiation_policy of already deleted ELB (#12360) 2017-03-06 13:48:35 +02:00
resource_aws_lightsail_domain.go provider/aws: Add support for AWS Lightsail Domain (#10637) 2016-12-09 17:56:48 +00:00
resource_aws_lightsail_domain_test.go provider/aws: Add support for AWS Lightsail Domain (#10637) 2016-12-09 17:56:48 +00:00
resource_aws_lightsail_instance.go provider/aws: add aws_lightsail_key_pair 2016-12-07 11:13:47 -06:00
resource_aws_lightsail_instance_test.go provider/aws: Add Lightsail Instance 2016-12-02 16:35:57 -06:00
resource_aws_lightsail_key_pair.go implement name_prefix 2016-12-08 14:08:45 -06:00
resource_aws_lightsail_key_pair_test.go provider/aws: Fix acceptance tests w/ missing values (#11377) 2017-01-24 14:09:29 +02:00
resource_aws_lightsail_static_ip.go provider/aws: Add support for aws_lightsail_static_ip (#13175) 2017-03-30 14:59:28 +01:00
resource_aws_lightsail_static_ip_attachment.go provider/aws: Add support for Lightsail Static IP Attachment (#13207) 2017-03-31 07:30:25 +01:00
resource_aws_lightsail_static_ip_attachment_test.go provider/aws: Add support for Lightsail Static IP Attachment (#13207) 2017-03-31 07:30:25 +01:00
resource_aws_lightsail_static_ip_test.go provider/aws: Add support for aws_lightsail_static_ip (#13175) 2017-03-30 14:59:28 +01:00
resource_aws_load_balancer_backend_server_policy.go d.SetId before return, may be up too late. 2016-08-07 23:20:26 -04:00
resource_aws_load_balancer_backend_server_policy_test.go provider/aws: Changing the region that * tests run against 2016-08-09 15:11:49 +12:00
resource_aws_load_balancer_listener_policy.go d.SetId before return, may be up too late. 2016-08-07 23:20:26 -04:00
resource_aws_load_balancer_listener_policy_test.go provider/aws: Randomize lb and policy name in LB policy test 2017-01-04 16:02:02 -06:00
resource_aws_load_balancer_policy.go address feedback from @stack72 on PR #7458 2016-08-07 23:09:00 -04:00
resource_aws_load_balancer_policy_test.go provider/aws: Update aws_elb policy acctests 2017-02-09 10:08:05 -05:00
resource_aws_main_route_table_association.go
resource_aws_main_route_table_association_test.go provider/aws: Tag VPCs created in our tests to help track down leaks (#14596) 2017-05-17 16:26:40 -05:00
resource_aws_nat_gateway.go switch to go way of checking for key existence so that go doesn't crash when the value doesn't exist 2016-09-06 20:57:10 -05:00
resource_aws_nat_gateway_test.go provider/aws: Tag VPCs created in our tests to help track down leaks (#14596) 2017-05-17 16:26:40 -05:00
resource_aws_network_acl.go Correct handling of network ACL default IPv6 ingress/egress rules. (#12835) 2017-03-27 12:42:49 +03:00
resource_aws_network_acl_rule.go Remove aws_network_acl_rule if not found. (#13608) 2017-04-17 01:39:42 +03:00
resource_aws_network_acl_rule_test.go provider/aws: Tag VPCs created in our tests to help track down leaks (#14596) 2017-05-17 16:26:40 -05:00
resource_aws_network_acl_test.go provider/aws: Tag VPCs created in our tests to help track down leaks (#14596) 2017-05-17 16:26:40 -05:00
resource_aws_network_interface.go - Exercise SecondaryPrivateIpAddressCount from AWS SDK 2016-12-07 14:50:06 -08:00
resource_aws_network_interface_attachment.go provider/aws: Adds aws_network_interface_attachment resource 2017-04-21 15:42:18 -04:00
resource_aws_network_interface_attacment_test.go provider/aws: Tag VPCs created in our tests to help track down leaks (#14596) 2017-05-17 16:26:40 -05:00
resource_aws_network_interface_test.go provider/aws: Tag VPCs created in our tests to help track down leaks (#14596) 2017-05-17 16:26:40 -05:00
resource_aws_opsworks_application.go provider/aws: Mark password fields as sensitive (#13147) 2017-03-29 11:15:22 +01:00
resource_aws_opsworks_application_test.go provider/aws: Remove restriction on running aws_opsworks_* on us-east-1 (#12688) 2017-03-15 16:17:53 +02:00
resource_aws_opsworks_custom_layer.go
resource_aws_opsworks_custom_layer_test.go update test to remove dupe provider definition 2017-03-20 14:18:14 -05:00
resource_aws_opsworks_ganglia_layer.go provider/aws: Remove restriction on running aws_opsworks_* on us-east-1 (#12688) 2017-03-15 16:17:53 +02:00
resource_aws_opsworks_haproxy_layer.go provider/aws: Remove restriction on running aws_opsworks_* on us-east-1 (#12688) 2017-03-15 16:17:53 +02:00
resource_aws_opsworks_instance.go provider/aws: Changing aws_opsworks_instance should ForceNew (#13839) 2017-04-21 13:21:09 +03:00
resource_aws_opsworks_instance_test.go provider/aws: Changing aws_opsworks_instance should ForceNew (#13839) 2017-04-21 13:21:09 +03:00
resource_aws_opsworks_java_app_layer.go provider/aws: Remove restriction on running aws_opsworks_* on us-east-1 (#12688) 2017-03-15 16:17:53 +02:00
resource_aws_opsworks_memcached_layer.go provider/aws: Remove restriction on running aws_opsworks_* on us-east-1 (#12688) 2017-03-15 16:17:53 +02:00
resource_aws_opsworks_mysql_layer.go provider/aws: Remove restriction on running aws_opsworks_* on us-east-1 (#12688) 2017-03-15 16:17:53 +02:00
resource_aws_opsworks_nodejs_app_layer.go provider/aws: Remove restriction on running aws_opsworks_* on us-east-1 (#12688) 2017-03-15 16:17:53 +02:00
resource_aws_opsworks_permission.go provider/aws: Remove restriction on running aws_opsworks_* on us-east-1 (#12688) 2017-03-15 16:17:53 +02:00
resource_aws_opsworks_permission_test.go provider/aws: Remove restriction on running aws_opsworks_* on us-east-1 (#12688) 2017-03-15 16:17:53 +02:00
resource_aws_opsworks_php_app_layer.go
resource_aws_opsworks_rails_app_layer.go provider/aws: Remove restriction on running aws_opsworks_* on us-east-1 (#12688) 2017-03-15 16:17:53 +02:00
resource_aws_opsworks_rails_app_layer_test.go provider/aws: Remove restriction on running aws_opsworks_* on us-east-1 (#12688) 2017-03-15 16:17:53 +02:00
resource_aws_opsworks_rds_db_instance.go provider/aws: Remove restriction on running aws_opsworks_* on us-east-1 (#12688) 2017-03-15 16:17:53 +02:00
resource_aws_opsworks_rds_db_instance_test.go provider/aws: Remove restriction on running aws_opsworks_* on us-east-1 (#12688) 2017-03-15 16:17:53 +02:00
resource_aws_opsworks_stack.go provider/aws: Recreate opsworks_stack on change of service_role_arn (#13325) 2017-04-04 16:20:53 +01:00
resource_aws_opsworks_stack_test.go provider/aws: Tag VPCs created in our tests to help track down leaks (#14596) 2017-05-17 16:26:40 -05:00
resource_aws_opsworks_static_web_layer.go
resource_aws_opsworks_user_profile.go provider/aws: Remove restriction on running aws_opsworks_* on us-east-1 (#12688) 2017-03-15 16:17:53 +02:00
resource_aws_opsworks_user_profile_test.go provider/aws: Remove restriction on running aws_opsworks_* on us-east-1 (#12688) 2017-03-15 16:17:53 +02:00
resource_aws_placement_group.go
resource_aws_placement_group_test.go
resource_aws_proxy_protocol_policy.go
resource_aws_proxy_protocol_policy_test.go
resource_aws_rds_cluster.go Fixes #14620 Handle migration of data when restoring db cluster from snapshot (#14622) 2017-05-18 14:23:55 +03:00
resource_aws_rds_cluster_instance.go Using the new time schema helper for RDS Instance lifecycle management (https://github.com/hashicorp/terraform/pull/12311) 2017-05-11 14:01:44 +03:00
resource_aws_rds_cluster_instance_test.go provider/aws: Tag VPCs created in our tests to help track down leaks (#14596) 2017-05-17 16:26:40 -05:00
resource_aws_rds_cluster_parameter_group.go Add `name_prefix` to RDS resources (#13232) 2017-03-31 20:22:57 +03:00
resource_aws_rds_cluster_parameter_group_test.go Add `name_prefix` to RDS resources (#13232) 2017-03-31 20:22:57 +03:00
resource_aws_rds_cluster_test.go provider/aws: Tag VPCs created in our tests to help track down leaks (#14596) 2017-05-17 16:26:40 -05:00
resource_aws_redshift_cluster.go provider/aws: improve redshift cluster validation (#12313) 2017-03-01 23:56:22 +00:00
resource_aws_redshift_cluster_test.go provider/aws: Tag VPCs created in our tests to help track down leaks (#14596) 2017-05-17 16:26:40 -05:00
resource_aws_redshift_parameter_group.go
resource_aws_redshift_parameter_group_test.go provider/aws: Fix redshift parameter group acctests 2017-02-09 10:18:31 -05:00
resource_aws_redshift_security_group.go provider/aws: Fix misspelled words 2016-09-12 07:23:34 +01:00
resource_aws_redshift_security_group_test.go provider/aws: Update Redshift SG Acctests 2017-02-09 10:55:12 -05:00
resource_aws_redshift_subnet_group.go provider/aws: Add tagging support to aws_redshift_subnet_group 2016-10-24 13:44:46 +01:00
resource_aws_redshift_subnet_group_test.go provider/aws: Tag VPCs created in our tests to help track down leaks (#14596) 2017-05-17 16:26:40 -05:00
resource_aws_route.go provider/aws: Allow Internet Gateway IPv6 routes (#14484) 2017-05-15 15:48:38 +03:00
resource_aws_route53_delegation_set.go
resource_aws_route53_delegation_set_test.go
resource_aws_route53_health_check.go provider/aws: Add the enable_sni attribute for Route53 health checks. 2016-11-02 16:23:35 -07:00
resource_aws_route53_health_check_test.go Grammar correction in alarm description (#14276) 2017-05-08 09:35:59 +03:00
resource_aws_route53_record.go provider/aws: Prevent Crash when importing aws_route53_record (#14218) 2017-05-04 21:51:10 +03:00
resource_aws_route53_record_migrate.go provider/aws: Fix aws_route53_record 0-2 migration (#7907) 2016-08-02 09:54:17 +10:00
resource_aws_route53_record_migrate_test.go provider/aws: Fix aws_route53_record 0-2 migration (#7907) 2016-08-02 09:54:17 +10:00
resource_aws_route53_record_test.go aws_route53_record: More consistent unquoting of TXT/SPF records. (#14170) 2017-05-05 11:41:53 +02:00
resource_aws_route53_zone.go provider/aws: fix aws_route53_zone force_destroy behavior (#12421) 2017-04-23 11:24:37 +02:00
resource_aws_route53_zone_association.go
resource_aws_route53_zone_association_test.go Update resource_aws_route53_zone_association_test.go 2017-04-13 16:44:19 -06:00
resource_aws_route53_zone_test.go aws: Separate acc test for R53 zone w/ trailing dot 2017-04-23 11:25:52 +02:00
resource_aws_route_table.go provider/aws: Increase timeouts for Route Table retries (#14345) 2017-05-10 14:41:49 +02:00
resource_aws_route_table_association.go provider/aws: Increase timeouts for Route Table retries (#14345) 2017-05-10 14:41:49 +02:00
resource_aws_route_table_association_test.go
resource_aws_route_table_test.go Clarify test is for panic fix 2017-04-12 09:24:42 -04:00
resource_aws_route_test.go provider/aws: Allow Internet Gateway IPv6 routes (#14484) 2017-05-15 15:48:38 +03:00
resource_aws_s3_bucket.go Add `bucket_prefix` to `aws_s3_bucket` (#13274) 2017-04-20 23:28:40 +03:00
resource_aws_s3_bucket_notification.go provider/aws: Support import `aws_s3_bucket_notification` 2016-08-23 08:19:06 +09:00
resource_aws_s3_bucket_notification_test.go provider/aws: Randomize SNS topic names in acceptance tests (#14618) 2017-05-18 11:45:19 +02:00
resource_aws_s3_bucket_object.go Be explicit about when tags are supported on S3 2017-05-10 11:13:03 -07:00
resource_aws_s3_bucket_object_test.go Add S3 bucket object tag support. (#11344) 2017-02-13 17:27:13 +00:00
resource_aws_s3_bucket_policy.go provider/aws: Suceed deleting bucket policy on err (#9641) 2016-10-26 23:16:54 +01:00
resource_aws_s3_bucket_policy_test.go provider/aws: Fix S3BucketPolicy Acceptance Tests 2017-01-20 11:58:15 -05:00
resource_aws_s3_bucket_test.go Add `bucket_prefix` to `aws_s3_bucket` (#13274) 2017-04-20 23:28:40 +03:00
resource_aws_security_group.go provider/aws: Increase timeout for creating security group (#14380) 2017-05-11 13:04:53 +02:00
resource_aws_security_group_rule.go provider/aws: Add plan-level validation for SG CIDR blocks 2017-03-16 11:49:51 -04:00
resource_aws_security_group_rule_migrate.go
resource_aws_security_group_rule_migrate_test.go
resource_aws_security_group_rule_test.go provider/aws: Add plan-level validation for SG CIDR blocks 2017-03-16 11:49:51 -04:00
resource_aws_security_group_rules_matching_test.go provider/aws: Fix misspelled words 2016-09-12 07:23:34 +01:00
resource_aws_security_group_test.go provider/aws: Fix security group rule import (#13630) 2017-04-21 11:38:41 -05:00
resource_aws_ses_active_receipt_rule_set.go
resource_aws_ses_active_receipt_rule_set_test.go
resource_aws_ses_configuration_set.go provider/aws: Support for SES Configuration sets and Event Destinations (#10735) 2016-12-16 11:46:39 +00:00
resource_aws_ses_configuration_set_test.go Add randomness to aws ses tests 2017-03-27 14:02:20 -06:00
resource_aws_ses_domain_identity.go provider/aws: Removal of Optional from aws_ses_domain_identity arn param 2017-05-09 13:06:11 +03:00
resource_aws_ses_domain_identity_test.go provider/aws: Removal of Optional from aws_ses_domain_identity arn param 2017-05-09 13:06:11 +03:00
resource_aws_ses_event_destination.go provider/aws: Support for SES Configuration sets and Event Destinations (#10735) 2016-12-16 11:46:39 +00:00
resource_aws_ses_event_destination_test.go Add randomness to aws ses tests 2017-03-27 14:02:20 -06:00
resource_aws_ses_receipt_filter.go
resource_aws_ses_receipt_filter_test.go
resource_aws_ses_receipt_rule.go provider/aws: aws_ses_receipt_rule: fix off-by-one errors (#12961) 2017-03-27 15:56:57 +03:00
resource_aws_ses_receipt_rule_set.go
resource_aws_ses_receipt_rule_set_test.go
resource_aws_ses_receipt_rule_test.go provider/aws: Fix test config for SES Receipt Rule (#14383) 2017-05-11 12:51:26 +02:00
resource_aws_sfn_activity.go Added Step Function resources (State Machine & Activity) (#11420) 2017-01-31 20:17:38 +00:00
resource_aws_sfn_activity_test.go Added Step Function resources (State Machine & Activity) (#11420) 2017-01-31 20:17:38 +00:00
resource_aws_sfn_state_machine.go Added Step Function resources (State Machine & Activity) (#11420) 2017-01-31 20:17:38 +00:00
resource_aws_sfn_state_machine_test.go Added Step Function resources (State Machine & Activity) (#11420) 2017-01-31 20:17:38 +00:00
resource_aws_simpledb_domain.go provider/aws: Support Import for `aws_simpledb_domain` (#7601) 2016-07-12 13:15:47 +01:00
resource_aws_simpledb_domain_test.go SimpleDB domain resource (#7600) 2016-07-12 12:55:58 +01:00
resource_aws_snapshot_create_volume_permission.go add wait after AWS snapshot attr modification 2016-12-08 16:12:25 -06:00
resource_aws_snapshot_create_volume_permission_test.go refactor the test to use caller_identity data source, and new ebs_snapshot resource 2016-12-08 16:43:03 -06:00
resource_aws_sns_topic.go Fixes the bug where sns delivery policy get always recreated (see https://github.com/hashicorp/terraform/issues/14024) 2017-04-28 13:18:12 +10:00
resource_aws_sns_topic_policy.go provider/aws: Allow ARN identifier to be set 2017-01-23 11:30:28 -05:00
resource_aws_sns_topic_policy_test.go provider/aws: Allow ARN identifier to be set 2017-01-23 11:30:28 -05:00
resource_aws_sns_topic_subscription.go SNS Topic Subscription: import more attributes (#10408) 2017-01-30 11:52:23 +00:00
resource_aws_sns_topic_subscription_test.go provider/aws: Randomize SNS topic names in acceptance tests (#14618) 2017-05-18 11:45:19 +02:00
resource_aws_sns_topic_test.go provider/aws: Randomize SNS topic names in acceptance tests (#14618) 2017-05-18 11:45:19 +02:00
resource_aws_spot_datafeed_subscription.go provider/aws: New resource `aws_spot_datafeed_subscription` 2016-09-03 20:06:40 +03:00
resource_aws_spot_datafeed_subscription_test.go provider/aws: Run AWS Spot Datafeed Subscription tests in serial 2017-04-17 11:35:56 -04:00
resource_aws_spot_fleet_request.go provider/aws: support tenancy for spot fleets 2017-05-02 15:52:54 -07:00
resource_aws_spot_fleet_request_migrate.go provider/aws: AWS SpotFleet Requests now works with Subnets and AZs (#8320) 2016-08-24 11:08:46 +01:00
resource_aws_spot_fleet_request_migrate_test.go provider/aws: AWS SpotFleet Requests now works with Subnets and AZs (#8320) 2016-08-24 11:08:46 +01:00
resource_aws_spot_fleet_request_test.go Fix whitespace. 2017-05-03 13:28:37 -07:00
resource_aws_spot_instance_request.go provider/aws: Override spot_instance_requests volume_tags schema (#14481) 2017-05-15 11:55:56 +03:00
resource_aws_spot_instance_request_test.go provider/aws: Fix spot_instance_request bug 2017-02-02 18:57:50 -05:00
resource_aws_sqs_queue.go provider/aws: Added SQS FIFO queues (#10614) 2016-12-12 17:40:59 +00:00
resource_aws_sqs_queue_policy.go Add JSON validation to the aws_sqs_queue_policy resource. 2016-09-17 23:14:02 +01:00
resource_aws_sqs_queue_policy_test.go provider/aws: Add aws_sqs_queue_policy 2016-09-05 08:17:48 +01:00
resource_aws_sqs_queue_test.go provider/aws: Added SQS FIFO queues (#10614) 2016-12-12 17:40:59 +00:00
resource_aws_ssm_activation.go New AWS resource `ssm_activation` (#9111) 2016-10-28 11:59:12 +02:00
resource_aws_ssm_activation_test.go New AWS resource `ssm_activation` (#9111) 2016-10-28 11:59:12 +02:00
resource_aws_ssm_association.go provider/aws: Add support for targets to aws_ssm_association (#14246) 2017-05-09 17:48:57 +03:00
resource_aws_ssm_association_test.go provider/aws: Add support for targets to aws_ssm_association (#14246) 2017-05-09 17:48:57 +03:00
resource_aws_ssm_document.go provider/aws: Refresh ssm document from state on 404 (#14279) 2017-05-08 13:50:16 +03:00
resource_aws_ssm_document_test.go provider/aws Add support for updating SSM documents (#13491) 2017-04-10 14:13:43 +03:00
resource_aws_ssm_maintenance_window.go provider/aws: Add support for aws_ssm_maintenance_window (#14087) 2017-05-04 20:36:28 +03:00
resource_aws_ssm_maintenance_window_target.go provider/aws: Add support for targets to aws_ssm_association (#14246) 2017-05-09 17:48:57 +03:00
resource_aws_ssm_maintenance_window_target_test.go provider/aws: Add support for aws_ssm_maintenance_window (#14087) 2017-05-04 20:36:28 +03:00
resource_aws_ssm_maintenance_window_task.go provider/aws: Add support for targets to aws_ssm_association (#14246) 2017-05-09 17:48:57 +03:00
resource_aws_ssm_maintenance_window_task_test.go provider/aws: Add support for aws_ssm_maintenance_window (#14087) 2017-05-04 20:36:28 +03:00
resource_aws_ssm_maintenance_window_test.go provider/aws: Add support for aws_ssm_maintenance_window (#14087) 2017-05-04 20:36:28 +03:00
resource_aws_subnet.go provider/aws: Change of aws_subnet ipv6 causing update failure (#14545) 2017-05-16 23:06:28 +03:00
resource_aws_subnet_migrate.go provider/aws: Adding support for ipv6 to aws_subnets needs migration (#13876) 2017-04-24 18:20:32 +01:00
resource_aws_subnet_migrate_test.go provider/aws: Adding support for ipv6 to aws_subnets needs migration (#13876) 2017-04-24 18:20:32 +01:00
resource_aws_subnet_test.go provider/aws: Change of aws_subnet ipv6 causing update failure (#14545) 2017-05-16 23:06:28 +03:00
resource_aws_volume_attachment.go provider/aws: Only catch 'terminated' if we're not terminating instance (#14517) 2017-05-16 07:04:56 +02:00
resource_aws_volume_attachment_test.go provider/aws: Provide the option to skip_destroy on aws_volume_attachment (#9792) 2016-11-02 15:29:37 +00:00
resource_aws_vpc.go provider/aws: Support the ability to enable / disable ipv6 support in (#12527) 2017-03-30 16:20:42 +03:00
resource_aws_vpc_dhcp_options.go Remove aws_vpc_dhcp_options if not found. (#13610) 2017-04-17 01:31:43 +03:00
resource_aws_vpc_dhcp_options_association.go
resource_aws_vpc_dhcp_options_association_test.go
resource_aws_vpc_dhcp_options_test.go Remove aws_vpc_dhcp_options if not found. (#13610) 2017-04-17 01:31:43 +03:00
resource_aws_vpc_endpoint.go Add new aws_vpc_endpoint_route_table_association resource (#10137) 2016-12-05 12:55:37 +00:00
resource_aws_vpc_endpoint_route_table_association.go provider/aws: Guard against panic in aws_vpc_endpoint_association (#11613) 2017-02-01 18:14:41 +00:00
resource_aws_vpc_endpoint_route_table_association_test.go Add new aws_vpc_endpoint_route_table_association resource (#10137) 2016-12-05 12:55:37 +00:00
resource_aws_vpc_endpoint_test.go provider/aws Return service CIDR blocks from aws_vpc_endpoint resource. (#10254) 2016-11-21 10:43:56 +02:00
resource_aws_vpc_migrate.go provider/aws: Migrate the state for AWS VPC after IPv6 changes (#13041) 2017-03-24 13:02:11 +02:00
resource_aws_vpc_migrate_test.go provider/aws: Migrate the state for AWS VPC after IPv6 changes (#13041) 2017-03-24 13:02:11 +02:00
resource_aws_vpc_peering_connection.go provider/aws: aws_vpc_peering_connection: import fix 2016-12-09 12:05:06 +00:00
resource_aws_vpc_peering_connection_accepter.go Tighten up documentation, same-account acceptance test, better error handling. 2017-02-02 18:46:23 -05:00
resource_aws_vpc_peering_connection_accepter_test.go Tighten up documentation, same-account acceptance test, better error handling. 2017-02-02 18:46:23 -05:00
resource_aws_vpc_peering_connection_test.go Add test to check for failed state of the VPC Peering Connection. 2016-09-26 09:17:24 +01:00
resource_aws_vpc_test.go provider/aws: Support the ability to enable / disable ipv6 support in (#12527) 2017-03-30 16:20:42 +03:00
resource_aws_vpn_connection.go provider/aws: Set aws_vpn_connection to recreate when in deleted state (#13204) 2017-03-31 14:40:37 +03:00
resource_aws_vpn_connection_test.go final fix after merge with master 2017-04-03 13:27:43 -06:00
resource_aws_vpn_gateway.go provider/aws: Raise timeout for attaching/detaching VPN GW (#14624) 2017-05-18 15:02:34 +02:00
resource_aws_vpn_gateway_attachment.go Fix. Adjust create and destroy timeout in aws_vpn_gateway_attachment. 2016-09-02 21:28:55 +01:00
resource_aws_vpn_gateway_attachment_test.go Add aws_vpn_gateway_attachment resource. (#7870) 2016-08-07 09:29:51 +10:00
resource_aws_vpn_gateway_test.go provider/aws: Do not set empty string to state for `aws_vpn_gateway` 2016-09-03 17:14:42 +03:00
resource_aws_waf_byte_match_set.go provider/aws: Use mutex & retry for WAF change operations (#13656) 2017-04-14 21:12:04 +01:00
resource_aws_waf_byte_match_set_test.go provider/aws: Use mutex & retry for WAF change operations (#13656) 2017-04-14 21:12:04 +01:00
resource_aws_waf_ipset.go provider/aws: Support IPSets with 0 descriptors 2017-04-24 21:53:25 +02:00
resource_aws_waf_ipset_test.go provider/aws: Support IPSets with 0 descriptors 2017-04-24 21:53:25 +02:00
resource_aws_waf_rule.go provider/aws: Allow WAF Rule with no predicates 2017-04-29 08:42:04 +01:00
resource_aws_waf_rule_test.go provider/aws: Allow WAF Rule with no predicates 2017-04-29 08:42:04 +01:00
resource_aws_waf_size_constraint_set.go provider/aws: Use mutex & retry for WAF change operations (#13656) 2017-04-14 21:12:04 +01:00
resource_aws_waf_size_constraint_set_test.go provider/aws: Use mutex & retry for WAF change operations (#13656) 2017-04-14 21:12:04 +01:00
resource_aws_waf_sql_injection_match_set.go provider/aws: Use mutex & retry for WAF change operations (#13656) 2017-04-14 21:12:04 +01:00
resource_aws_waf_sql_injection_match_set_test.go provider/aws: Use mutex & retry for WAF change operations (#13656) 2017-04-14 21:12:04 +01:00
resource_aws_waf_web_acl.go Validate WAF metric names 2017-04-23 21:46:39 +01:00
resource_aws_waf_web_acl_test.go provider/aws: Use mutex & retry for WAF change operations (#13656) 2017-04-14 21:12:04 +01:00
resource_aws_waf_xss_match_set.go provider/aws: Use mutex & retry for WAF change operations (#13656) 2017-04-14 21:12:04 +01:00
resource_aws_waf_xss_match_set_test.go provider/aws: Use mutex & retry for WAF change operations (#13656) 2017-04-14 21:12:04 +01:00
resource_aws_wafregional_byte_match_set.go provider/aws: AWS WAF Regional IPSet + ByteMatchSet support (#13705) 2017-05-13 22:01:27 +02:00
resource_aws_wafregional_byte_match_set_test.go provider/aws: AWS WAF Regional IPSet + ByteMatchSet support (#13705) 2017-05-13 22:01:27 +02:00
resource_aws_wafregional_ipset.go provider/aws: AWS WAF Regional IPSet + ByteMatchSet support (#13705) 2017-05-13 22:01:27 +02:00
resource_aws_wafregional_ipset_test.go provider/aws: AWS WAF Regional IPSet + ByteMatchSet support (#13705) 2017-05-13 22:01:27 +02:00
resource_vpn_connection_route.go
resource_vpn_connection_route_test.go randomizes all bgp_asn values 2017-04-03 11:17:59 -06:00
s3_tags.go provider/aws: Update the ignoring of AWS specific tags (#14321) 2017-05-09 20:19:33 +03:00
s3_tags_test.go provider/aws: Update the ignoring of AWS specific tags (#14321) 2017-05-09 20:19:33 +03:00
sort.go provider/aws: Sort AMI and snapshot IDs (#13866) 2017-04-25 15:11:21 -07:00
structure.go provider/aws: Add support for targets to aws_ssm_association (#14246) 2017-05-09 17:48:57 +03:00
structure_test.go aws_route53_record: More consistent unquoting of TXT/SPF records. (#14170) 2017-05-05 11:41:53 +02:00
tags.go provider/aws: Increase timeouts for Route Table retries (#14345) 2017-05-10 14:41:49 +02:00
tagsBeanstalk.go provider/aws: Update the ignoring of AWS specific tags (#14321) 2017-05-09 20:19:33 +03:00
tagsBeanstalk_test.go Ignore AWS specific tags 2016-11-11 15:40:09 +02:00
tagsCloudFront.go provider/aws: Add support for tags to aws_cloudfront_distribution 2016-09-28 13:18:41 +01:00
tagsCloudtrail.go provider/aws: Update the ignoring of AWS specific tags (#14321) 2017-05-09 20:19:33 +03:00
tagsCloudtrail_test.go Ignore AWS specific tags 2016-11-11 15:40:09 +02:00
tagsCodeBuild.go provider/aws: Update the ignoring of AWS specific tags (#14321) 2017-05-09 20:19:33 +03:00
tagsCodeBuild_test.go New resource aws_codebuild_project 2017-02-02 16:13:51 +00:00
tagsEC.go provider/aws: Update the ignoring of AWS specific tags (#14321) 2017-05-09 20:19:33 +03:00
tagsEC_test.go Ignore AWS specific tags 2016-11-11 15:40:09 +02:00
tagsEFS.go provider/aws: Update the ignoring of AWS specific tags (#14321) 2017-05-09 20:19:33 +03:00
tagsEFS_test.go Ignore AWS specific tags 2016-11-11 15:40:09 +02:00
tagsELB.go provider/aws: Update the ignoring of AWS specific tags (#14321) 2017-05-09 20:19:33 +03:00
tagsELB_test.go Ignore AWS specific tags 2016-11-11 15:40:09 +02:00
tagsGeneric.go provider/aws: Update the ignoring of AWS specific tags (#14321) 2017-05-09 20:19:33 +03:00
tagsGeneric_test.go Add tagging support to the 'aws_lambda_function' resource. (#13873) 2017-04-23 04:51:20 +03:00
tagsInspector.go provider/aws: Update the ignoring of AWS specific tags (#14321) 2017-05-09 20:19:33 +03:00
tagsKMS.go provider/aws: Update the ignoring of AWS specific tags (#14321) 2017-05-09 20:19:33 +03:00
tagsKMS_test.go provider/aws: Add KMS key tag support (#12243) 2017-03-17 19:08:33 +00:00
tagsLambda.go Add tagging support to the 'aws_lambda_function' resource. (#13873) 2017-04-23 04:51:20 +03:00
tagsRDS.go provider/aws: Update the ignoring of AWS specific tags (#14321) 2017-05-09 20:19:33 +03:00
tagsRDS_test.go Ignore AWS specific tags 2016-11-11 15:40:09 +02:00
tagsRedshift.go provider/aws: Update the ignoring of AWS specific tags (#14321) 2017-05-09 20:19:33 +03:00
tagsRedshift_test.go Ignore AWS specific tags 2016-11-11 15:40:09 +02:00
tags_dms.go provider/aws: Add AWS DMS (data migration service) resources (#11122) 2017-02-02 10:30:05 +00:00
tags_dms_test.go provider/aws: Add AWS DMS (data migration service) resources (#11122) 2017-02-02 10:30:05 +00:00
tags_elasticsearchservice.go provider/aws: Update the ignoring of AWS specific tags (#14321) 2017-05-09 20:19:33 +03:00
tags_elasticsearchservice_test.go Ignore AWS specific tags 2016-11-11 15:40:09 +02:00
tags_kinesis.go provider/aws: Update the ignoring of AWS specific tags (#14321) 2017-05-09 20:19:33 +03:00
tags_kinesis_test.go Ignore AWS specific tags 2016-11-11 15:40:09 +02:00
tags_route53.go provider/aws: Update the ignoring of AWS specific tags (#14321) 2017-05-09 20:19:33 +03:00
tags_route53_test.go Ignore AWS specific tags 2016-11-11 15:40:09 +02:00
tags_test.go Ignore AWS specific tags 2016-11-11 15:40:09 +02:00
utils.go Fix aws_dms_replication_task diff for json with whitespace. (#12380) 2017-03-07 16:00:02 +02:00
utils_test.go Fix aws_dms_replication_task diff for json with whitespace. (#12380) 2017-03-07 16:00:02 +02:00
validators.go provider/aws: Force lowercasing for DB Option group name or name_prefix (#14366) 2017-05-10 15:42:10 -05:00
validators_test.go provider/aws: Improved IAM Role description tests (#14220) 2017-05-05 17:03:59 +03:00
waf_token_handlers.go provider/aws: Use mutex & retry for WAF change operations (#13656) 2017-04-14 21:12:04 +01:00
wafregionl_token_handlers.go provider/aws: AWS WAF Regional IPSet + ByteMatchSet support (#13705) 2017-05-13 22:01:27 +02:00
website_endpoint_url_test.go Corrected Seoul S3 Website Endpoint Test 2016-09-24 17:42:52 +09:00