├── .circleci ├── config.yml └── nuke_config.yml ├── .github ├── FUNDING.yml └── pull_request_template.md ├── .gitignore ├── .golangci.yml ├── .gon_amd64.hcl ├── .gon_arm64.hcl ├── .pre-commit-config.yaml ├── CODEOWNERS ├── CONTRIBUTING.md ├── LICENSE.txt ├── README.md ├── _docs └── rfc │ └── TEMPLATE.md ├── aws ├── aws.go ├── aws_test.go ├── error.go ├── inspect.go ├── inspect_test.go ├── query.go ├── query_test.go ├── region.go ├── region_test.go ├── resource.go ├── resource_registry.go └── resources │ ├── access_analyzer.go │ ├── access_analyzer_test.go │ ├── access_analyzer_types.go │ ├── acm.go │ ├── acm_test.go │ ├── acm_types.go │ ├── acmpca.go │ ├── acmpca_test.go │ ├── acmpca_types.go │ ├── ami.go │ ├── ami_test.go │ ├── ami_types.go │ ├── apigateway.go │ ├── apigateway_test.go │ ├── apigateway_types.go │ ├── apigatewayv2.go │ ├── apigatewayv2_test.go │ ├── apigatewayv2_types.go │ ├── apprunner_service.go │ ├── apprunner_service_test.go │ ├── apprunner_service_types.go │ ├── asg.go │ ├── asg_test.go │ ├── asg_types.go │ ├── backup_vault.go │ ├── backup_vault_test.go │ ├── backup_vault_types.go │ ├── base_resource.go │ ├── cloudformation_stack.go │ ├── cloudformation_stack_test.go │ ├── cloudformation_stack_types.go │ ├── cloudfront_distribution.go │ ├── cloudfront_distribution_test.go │ ├── cloudfront_distribution_types.go │ ├── cloudmap_namespace.go │ ├── cloudmap_namespace_test.go │ ├── cloudmap_namespace_types.go │ ├── cloudmap_service.go │ ├── cloudmap_service_test.go │ ├── cloudmap_service_types.go │ ├── cloudtrail.go │ ├── cloudtrail_test.go │ ├── cloudtrail_types.go │ ├── cloudwatch_alarm.go │ ├── cloudwatch_alarm_test.go │ ├── cloudwatch_alarm_types.go │ ├── cloudwatch_dashboard.go │ ├── cloudwatch_dashboard_test.go │ ├── cloudwatch_dashboard_types.go │ ├── cloudwatch_loggroup.go │ ├── cloudwatch_loggroup_test.go │ ├── cloudwatch_loggroup_types.go │ ├── codedeploy_application.go │ ├── codedeploy_application_test.go │ ├── codedeploy_application_types.go │ ├── common.go │ ├── config_recorder.go │ ├── config_recorder_test.go │ ├── config_recorder_types.go │ ├── config_service.go │ ├── config_service_test.go │ ├── config_service_types.go │ ├── datasync_location.go │ ├── datasync_location_test.go │ ├── datasync_location_types.go │ ├── datasync_task.go │ ├── datasync_task_test.go │ ├── datasync_task_types.go │ ├── dynamodb.go │ ├── dynamodb_test.go │ ├── dynamodb_types.go │ ├── ebs.go │ ├── ebs_test.go │ ├── ebs_types.go │ ├── ec2.go │ ├── ec2_dedicated_host.go │ ├── ec2_dedicated_host_test.go │ ├── ec2_dedicated_host_types.go │ ├── ec2_dhcp_option.go │ ├── ec2_dhcp_option_test.go │ ├── ec2_dhcp_option_types.go │ ├── ec2_egress_only_igw.go │ ├── ec2_egress_only_igw_test.go │ ├── ec2_egress_only_igw_types.go │ ├── ec2_endpoints.go │ ├── ec2_endpoints_test.go │ ├── ec2_endpoints_types.go │ ├── ec2_internet_gateway.go │ ├── ec2_internet_gateway_test.go │ ├── ec2_internet_gateway_types.go │ ├── ec2_ipam.go │ ├── ec2_ipam_byoasn.go │ ├── ec2_ipam_byoasn_test.go │ ├── ec2_ipam_byoasn_types.go │ ├── ec2_ipam_custom_allocation.go │ ├── ec2_ipam_custom_allocation_test.go │ ├── ec2_ipam_custom_allocation_types.go │ ├── ec2_ipam_pool.go │ ├── ec2_ipam_pool_test.go │ ├── ec2_ipam_pool_types.go │ ├── ec2_ipam_resource_discovery.go │ ├── ec2_ipam_resource_discovery_test.go │ ├── ec2_ipam_resource_discovery_types.go │ ├── ec2_ipam_scope.go │ ├── ec2_ipam_scope_test.go │ ├── ec2_ipam_scope_types.go │ ├── ec2_ipam_test.go │ ├── ec2_ipam_types.go │ ├── ec2_key_pair.go │ ├── ec2_key_pair_test.go │ ├── ec2_key_pair_types.go │ ├── ec2_network_acl.go │ ├── ec2_network_acl_test.go │ ├── ec2_network_acl_types.go │ ├── ec2_network_interface.go │ ├── ec2_network_interface_test.go │ ├── ec2_network_interface_types.go │ ├── ec2_placement_group.go │ ├── ec2_placement_group_test.go │ ├── ec2_placement_group_types.go │ ├── ec2_subnet.go │ ├── ec2_subnet_test.go │ ├── ec2_subnet_types.go │ ├── ec2_test.go │ ├── ec2_types.go │ ├── ec2_vpc.go │ ├── ec2_vpc_test.go │ ├── ec2_vpc_types.go │ ├── ecr.go │ ├── ecr_test.go │ ├── ecr_types.go │ ├── ecs_cluster.go │ ├── ecs_cluster_test.go │ ├── ecs_cluster_types.go │ ├── ecs_service.go │ ├── ecs_service_test.go │ ├── ecs_service_types.go │ ├── efs.go │ ├── efs_test.go │ ├── efs_types.go │ ├── eip.go │ ├── eip_test.go │ ├── eip_types.go │ ├── eks.go │ ├── eks_test.go │ ├── eks_types.go │ ├── elastic_beanstalk.go │ ├── elastic_beanstalk_test.go │ ├── elastic_beanstalk_types.go │ ├── elasticache.go │ ├── elasticache_serverless.go │ ├── elasticache_serverless_test.go │ ├── elasticache_serverless_types.go │ ├── elasticache_test.go │ ├── elasticache_types.go │ ├── elb.go │ ├── elb_test.go │ ├── elb_types.go │ ├── elbv2.go │ ├── elbv2_test.go │ ├── elbv2_types.go │ ├── eventbridge.go │ ├── eventbridge_archive.go │ ├── eventbridge_archive_test.go │ ├── eventbridge_archive_types.go │ ├── eventbridge_rule.go │ ├── eventbridge_rule_test.go │ ├── eventbridge_rule_types.go │ ├── eventbridge_schedule.go │ ├── eventbridge_schedule_group.go │ ├── eventbridge_schedule_group_test.go │ ├── eventbridge_schedule_group_types.go │ ├── eventbridge_schedule_test.go │ ├── eventbridge_schedule_types.go │ ├── eventbridge_test.go │ ├── eventbridge_types.go │ ├── globals.go │ ├── grafana.go │ ├── grafana_test.go │ ├── grafana_types.go │ ├── guardduty.go │ ├── guardduty_test.go │ ├── guardduty_types.go │ ├── iam.go │ ├── iam_group.go │ ├── iam_group_test.go │ ├── iam_group_types.go │ ├── iam_instance_profile.go │ ├── iam_instance_profile_test.go │ ├── iam_instance_profile_types.go │ ├── iam_policy.go │ ├── iam_policy_test.go │ ├── iam_policy_types.go │ ├── iam_role.go │ ├── iam_role_test.go │ ├── iam_role_types.go │ ├── iam_service_linked_role.go │ ├── iam_service_linked_role_test.go │ ├── iam_service_linked_role_types.go │ ├── iam_test.go │ ├── iam_types.go │ ├── kinesis_firehose.go │ ├── kinesis_firehose_test.go │ ├── kinesis_firehose_types.go │ ├── kinesis_stream.go │ ├── kinesis_stream_test.go │ ├── kinesis_stream_types.go │ ├── kms_customer_key.go │ ├── kms_customer_key_test.go │ ├── kms_customer_key_types.go │ ├── lambda.go │ ├── lambda_layer.go │ ├── lambda_layer_test.go │ ├── lambda_layer_types.go │ ├── lambda_test.go │ ├── lambda_types.go │ ├── launch_config.go │ ├── launch_config_test.go │ ├── launch_config_types.go │ ├── launch_template.go │ ├── launch_template_test.go │ ├── launch_template_types.go │ ├── macie.go │ ├── macie_test.go │ ├── macie_types.go │ ├── managed_prometheus.go │ ├── managed_prometheus_test.go │ ├── managed_prometheus_types.go │ ├── msk_cluster.go │ ├── msk_cluster_test.go │ ├── msk_cluster_types.go │ ├── nat_gateway.go │ ├── nat_gateway_test.go │ ├── nat_gateway_types.go │ ├── network_firewall.go │ ├── network_firewall_policy.go │ ├── network_firewall_policy_test.go │ ├── network_firewall_policy_types.go │ ├── network_firewall_resource_policy.go │ ├── network_firewall_resource_policy_test.go │ ├── network_firewall_resource_policy_types.go │ ├── network_firewall_rule_group.go │ ├── network_firewall_rule_group_test.go │ ├── network_firewall_rule_group_types.go │ ├── network_firewall_test.go │ ├── network_firewall_tls_config.go │ ├── network_firewall_tls_config_test.go │ ├── network_firewall_tls_config_types.go │ ├── network_firewall_types.go │ ├── oidc_provider.go │ ├── oidc_provider_test.go │ ├── oidc_provider_types.go │ ├── opensearch.go │ ├── opensearch_test.go │ ├── opensearch_types.go │ ├── rds.go │ ├── rds_cluster.go │ ├── rds_cluster_test.go │ ├── rds_cluster_types.go │ ├── rds_global_cluster.go │ ├── rds_global_cluster_membership.go │ ├── rds_global_cluster_membership_test.go │ ├── rds_global_cluster_membership_types.go │ ├── rds_global_cluster_test.go │ ├── rds_global_cluster_types.go │ ├── rds_parameter_group.go │ ├── rds_parameter_group_test.go │ ├── rds_parameter_group_types.go │ ├── rds_proxy.go │ ├── rds_proxy_test.go │ ├── rds_proxy_types.go │ ├── rds_snapshot.go │ ├── rds_snapshot_test.go │ ├── rds_snapshot_types.go │ ├── rds_subnet_group.go │ ├── rds_subnet_group_test.go │ ├── rds_subnet_group_types.go │ ├── rds_test.go │ ├── rds_types.go │ ├── redshift.go │ ├── redshift_test.go │ ├── redshift_types.go │ ├── route53_cidr_collection.go │ ├── route53_cidr_collection_test.go │ ├── route53_cidr_collection_types.go │ ├── route53_hostedzone.go │ ├── route53_hostedzone_test.go │ ├── route53_hostedzone_types.go │ ├── route53_traffic_policy.go │ ├── route53_traffic_policy_test.go │ ├── route53_traffic_policy_types.go │ ├── s3.go │ ├── s3_access_point.go │ ├── s3_access_point_test.go │ ├── s3_access_point_types.go │ ├── s3_multi_region_access_point.go │ ├── s3_multi_region_access_point_test.go │ ├── s3_multi_region_access_point_types.go │ ├── s3_object_lambda_access_point.go │ ├── s3_object_lambda_access_point_test.go │ ├── s3_object_lambda_access_point_types.go │ ├── s3_test.go │ ├── s3_types.go │ ├── sagemaker_endpoint.go │ ├── sagemaker_endpoint_config.go │ ├── sagemaker_endpoint_config_test.go │ ├── sagemaker_endpoint_config_types.go │ ├── sagemaker_endpoint_test.go │ ├── sagemaker_endpoint_types.go │ ├── sagemaker_notebook_instance.go │ ├── sagemaker_notebook_instance_test.go │ ├── sagemaker_notebook_instance_types.go │ ├── sagemaker_studio.go │ ├── sagemaker_studio_test.go │ ├── sagemaker_studio_types.go │ ├── secrets_manager.go │ ├── secrets_manager_test.go │ ├── secrets_manager_types.go │ ├── security_group.go │ ├── security_group_test.go │ ├── security_group_types.go │ ├── security_hub.go │ ├── security_hub_test.go │ ├── security_hub_types.go │ ├── ses_configuration_set.go │ ├── ses_configuration_set_test.go │ ├── ses_configuration_set_types.go │ ├── ses_email_receiving.go │ ├── ses_email_receiving_test.go │ ├── ses_email_receiving_types.go │ ├── ses_email_templates.go │ ├── ses_email_templates_test.go │ ├── ses_email_templates_types.go │ ├── ses_identity.go │ ├── ses_identity_test.go │ ├── ses_identity_types.go │ ├── snapshot.go │ ├── snapshot_test.go │ ├── snapshot_types.go │ ├── sns.go │ ├── sns_test.go │ ├── sns_types.go │ ├── sqs.go │ ├── sqs_test.go │ ├── sqs_types.go │ ├── tgw_peering_attachment.go │ ├── tgw_peering_attachment_test.go │ ├── tgw_peering_attachment_types.go │ ├── tgw_route_tables.go │ ├── tgw_route_tables_test.go │ ├── tgw_route_tables_types.go │ ├── tgw_vpc_attachment.go │ ├── tgw_vpc_attachment_test.go │ ├── tgw_vpc_attachment_types.go │ ├── transit_gateway.go │ ├── transit_gateway_test.go │ ├── transit_gateway_types.go │ ├── vpc_lattice_service.go │ ├── vpc_lattice_service_network.go │ ├── vpc_lattice_service_network_test.go │ ├── vpc_lattice_service_network_types.go │ ├── vpc_lattice_service_test.go │ ├── vpc_lattice_service_type.go │ ├── vpc_lattice_target_group.go │ ├── vpc_lattice_target_group_test.go │ └── vpc_lattice_target_group_types.go ├── commands ├── aws_commands.go ├── cli.go ├── cli_test.go ├── errors.go ├── flags.go ├── gcp_commands.go └── helpers.go ├── config ├── config.go ├── config_tag_test.go ├── config_test.go ├── examples │ ├── complete.yaml │ └── simple.yaml └── mocks │ ├── empty.yaml │ ├── garbage.yaml │ └── malformed.yaml ├── docs └── STATIC_ANALYSIS.md ├── externalcreds └── creds.go ├── gcp ├── gcp.go ├── resource.go └── resources │ ├── base_resource.go │ ├── gcs_bucket.go │ ├── gcs_bucket_test.go │ └── gcs_bucket_types.go ├── go.mod ├── go.sum ├── logging └── logger.go ├── main.go ├── report ├── report.go └── report_test.go ├── telemetry └── telemetry.go ├── ui ├── json_formatter.go ├── json_formatter_test.go ├── json_types.go ├── styles.go ├── ui.go └── ui_test.go └── util ├── context.go ├── error.go ├── error_test.go ├── get_current_account_id.go ├── string_utils.go ├── tag.go ├── time.go ├── time_test.go └── unique_id.go /.circleci/config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gruntwork-io/cloud-nuke/HEAD/.circleci/config.yml -------------------------------------------------------------------------------- /.circleci/nuke_config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gruntwork-io/cloud-nuke/HEAD/.circleci/nuke_config.yml -------------------------------------------------------------------------------- /.github/FUNDING.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gruntwork-io/cloud-nuke/HEAD/.github/FUNDING.yml -------------------------------------------------------------------------------- /.github/pull_request_template.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gruntwork-io/cloud-nuke/HEAD/.github/pull_request_template.md -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | .idea 2 | vendor 3 | .vscode 4 | cloud-nuke 5 | config.yaml 6 | .envrc 7 | -------------------------------------------------------------------------------- /.golangci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gruntwork-io/cloud-nuke/HEAD/.golangci.yml -------------------------------------------------------------------------------- /.gon_amd64.hcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gruntwork-io/cloud-nuke/HEAD/.gon_amd64.hcl -------------------------------------------------------------------------------- /.gon_arm64.hcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gruntwork-io/cloud-nuke/HEAD/.gon_arm64.hcl -------------------------------------------------------------------------------- /.pre-commit-config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gruntwork-io/cloud-nuke/HEAD/.pre-commit-config.yaml -------------------------------------------------------------------------------- /CODEOWNERS: -------------------------------------------------------------------------------- 1 | * @arsci @denis256 @james03160927 2 | -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gruntwork-io/cloud-nuke/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gruntwork-io/cloud-nuke/HEAD/LICENSE.txt -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gruntwork-io/cloud-nuke/HEAD/README.md -------------------------------------------------------------------------------- /_docs/rfc/TEMPLATE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gruntwork-io/cloud-nuke/HEAD/_docs/rfc/TEMPLATE.md -------------------------------------------------------------------------------- /aws/aws.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gruntwork-io/cloud-nuke/HEAD/aws/aws.go -------------------------------------------------------------------------------- /aws/aws_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gruntwork-io/cloud-nuke/HEAD/aws/aws_test.go -------------------------------------------------------------------------------- /aws/error.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gruntwork-io/cloud-nuke/HEAD/aws/error.go -------------------------------------------------------------------------------- /aws/inspect.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gruntwork-io/cloud-nuke/HEAD/aws/inspect.go -------------------------------------------------------------------------------- /aws/inspect_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gruntwork-io/cloud-nuke/HEAD/aws/inspect_test.go -------------------------------------------------------------------------------- /aws/query.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gruntwork-io/cloud-nuke/HEAD/aws/query.go -------------------------------------------------------------------------------- /aws/query_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gruntwork-io/cloud-nuke/HEAD/aws/query_test.go -------------------------------------------------------------------------------- /aws/region.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gruntwork-io/cloud-nuke/HEAD/aws/region.go -------------------------------------------------------------------------------- /aws/region_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gruntwork-io/cloud-nuke/HEAD/aws/region_test.go -------------------------------------------------------------------------------- /aws/resource.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gruntwork-io/cloud-nuke/HEAD/aws/resource.go -------------------------------------------------------------------------------- /aws/resource_registry.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gruntwork-io/cloud-nuke/HEAD/aws/resource_registry.go -------------------------------------------------------------------------------- /aws/resources/access_analyzer.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gruntwork-io/cloud-nuke/HEAD/aws/resources/access_analyzer.go -------------------------------------------------------------------------------- /aws/resources/access_analyzer_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gruntwork-io/cloud-nuke/HEAD/aws/resources/access_analyzer_test.go -------------------------------------------------------------------------------- /aws/resources/access_analyzer_types.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gruntwork-io/cloud-nuke/HEAD/aws/resources/access_analyzer_types.go -------------------------------------------------------------------------------- /aws/resources/acm.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gruntwork-io/cloud-nuke/HEAD/aws/resources/acm.go -------------------------------------------------------------------------------- /aws/resources/acm_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gruntwork-io/cloud-nuke/HEAD/aws/resources/acm_test.go -------------------------------------------------------------------------------- /aws/resources/acm_types.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gruntwork-io/cloud-nuke/HEAD/aws/resources/acm_types.go -------------------------------------------------------------------------------- /aws/resources/acmpca.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gruntwork-io/cloud-nuke/HEAD/aws/resources/acmpca.go -------------------------------------------------------------------------------- /aws/resources/acmpca_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gruntwork-io/cloud-nuke/HEAD/aws/resources/acmpca_test.go -------------------------------------------------------------------------------- /aws/resources/acmpca_types.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gruntwork-io/cloud-nuke/HEAD/aws/resources/acmpca_types.go -------------------------------------------------------------------------------- /aws/resources/ami.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gruntwork-io/cloud-nuke/HEAD/aws/resources/ami.go -------------------------------------------------------------------------------- /aws/resources/ami_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gruntwork-io/cloud-nuke/HEAD/aws/resources/ami_test.go -------------------------------------------------------------------------------- /aws/resources/ami_types.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gruntwork-io/cloud-nuke/HEAD/aws/resources/ami_types.go -------------------------------------------------------------------------------- /aws/resources/apigateway.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gruntwork-io/cloud-nuke/HEAD/aws/resources/apigateway.go -------------------------------------------------------------------------------- /aws/resources/apigateway_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gruntwork-io/cloud-nuke/HEAD/aws/resources/apigateway_test.go -------------------------------------------------------------------------------- /aws/resources/apigateway_types.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gruntwork-io/cloud-nuke/HEAD/aws/resources/apigateway_types.go -------------------------------------------------------------------------------- /aws/resources/apigatewayv2.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gruntwork-io/cloud-nuke/HEAD/aws/resources/apigatewayv2.go -------------------------------------------------------------------------------- /aws/resources/apigatewayv2_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gruntwork-io/cloud-nuke/HEAD/aws/resources/apigatewayv2_test.go -------------------------------------------------------------------------------- /aws/resources/apigatewayv2_types.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gruntwork-io/cloud-nuke/HEAD/aws/resources/apigatewayv2_types.go -------------------------------------------------------------------------------- /aws/resources/apprunner_service.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gruntwork-io/cloud-nuke/HEAD/aws/resources/apprunner_service.go -------------------------------------------------------------------------------- /aws/resources/apprunner_service_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gruntwork-io/cloud-nuke/HEAD/aws/resources/apprunner_service_test.go -------------------------------------------------------------------------------- /aws/resources/apprunner_service_types.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gruntwork-io/cloud-nuke/HEAD/aws/resources/apprunner_service_types.go -------------------------------------------------------------------------------- /aws/resources/asg.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gruntwork-io/cloud-nuke/HEAD/aws/resources/asg.go -------------------------------------------------------------------------------- /aws/resources/asg_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gruntwork-io/cloud-nuke/HEAD/aws/resources/asg_test.go -------------------------------------------------------------------------------- /aws/resources/asg_types.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gruntwork-io/cloud-nuke/HEAD/aws/resources/asg_types.go -------------------------------------------------------------------------------- /aws/resources/backup_vault.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gruntwork-io/cloud-nuke/HEAD/aws/resources/backup_vault.go -------------------------------------------------------------------------------- /aws/resources/backup_vault_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gruntwork-io/cloud-nuke/HEAD/aws/resources/backup_vault_test.go -------------------------------------------------------------------------------- /aws/resources/backup_vault_types.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gruntwork-io/cloud-nuke/HEAD/aws/resources/backup_vault_types.go -------------------------------------------------------------------------------- /aws/resources/base_resource.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gruntwork-io/cloud-nuke/HEAD/aws/resources/base_resource.go -------------------------------------------------------------------------------- /aws/resources/cloudformation_stack.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gruntwork-io/cloud-nuke/HEAD/aws/resources/cloudformation_stack.go -------------------------------------------------------------------------------- /aws/resources/cloudformation_stack_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gruntwork-io/cloud-nuke/HEAD/aws/resources/cloudformation_stack_test.go -------------------------------------------------------------------------------- /aws/resources/cloudformation_stack_types.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gruntwork-io/cloud-nuke/HEAD/aws/resources/cloudformation_stack_types.go -------------------------------------------------------------------------------- /aws/resources/cloudfront_distribution.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gruntwork-io/cloud-nuke/HEAD/aws/resources/cloudfront_distribution.go -------------------------------------------------------------------------------- /aws/resources/cloudfront_distribution_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gruntwork-io/cloud-nuke/HEAD/aws/resources/cloudfront_distribution_test.go -------------------------------------------------------------------------------- /aws/resources/cloudfront_distribution_types.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gruntwork-io/cloud-nuke/HEAD/aws/resources/cloudfront_distribution_types.go -------------------------------------------------------------------------------- /aws/resources/cloudmap_namespace.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gruntwork-io/cloud-nuke/HEAD/aws/resources/cloudmap_namespace.go -------------------------------------------------------------------------------- /aws/resources/cloudmap_namespace_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gruntwork-io/cloud-nuke/HEAD/aws/resources/cloudmap_namespace_test.go -------------------------------------------------------------------------------- /aws/resources/cloudmap_namespace_types.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gruntwork-io/cloud-nuke/HEAD/aws/resources/cloudmap_namespace_types.go -------------------------------------------------------------------------------- /aws/resources/cloudmap_service.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gruntwork-io/cloud-nuke/HEAD/aws/resources/cloudmap_service.go -------------------------------------------------------------------------------- /aws/resources/cloudmap_service_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gruntwork-io/cloud-nuke/HEAD/aws/resources/cloudmap_service_test.go -------------------------------------------------------------------------------- /aws/resources/cloudmap_service_types.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gruntwork-io/cloud-nuke/HEAD/aws/resources/cloudmap_service_types.go -------------------------------------------------------------------------------- /aws/resources/cloudtrail.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gruntwork-io/cloud-nuke/HEAD/aws/resources/cloudtrail.go -------------------------------------------------------------------------------- /aws/resources/cloudtrail_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gruntwork-io/cloud-nuke/HEAD/aws/resources/cloudtrail_test.go -------------------------------------------------------------------------------- /aws/resources/cloudtrail_types.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gruntwork-io/cloud-nuke/HEAD/aws/resources/cloudtrail_types.go -------------------------------------------------------------------------------- /aws/resources/cloudwatch_alarm.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gruntwork-io/cloud-nuke/HEAD/aws/resources/cloudwatch_alarm.go -------------------------------------------------------------------------------- /aws/resources/cloudwatch_alarm_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gruntwork-io/cloud-nuke/HEAD/aws/resources/cloudwatch_alarm_test.go -------------------------------------------------------------------------------- /aws/resources/cloudwatch_alarm_types.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gruntwork-io/cloud-nuke/HEAD/aws/resources/cloudwatch_alarm_types.go -------------------------------------------------------------------------------- /aws/resources/cloudwatch_dashboard.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gruntwork-io/cloud-nuke/HEAD/aws/resources/cloudwatch_dashboard.go -------------------------------------------------------------------------------- /aws/resources/cloudwatch_dashboard_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gruntwork-io/cloud-nuke/HEAD/aws/resources/cloudwatch_dashboard_test.go -------------------------------------------------------------------------------- /aws/resources/cloudwatch_dashboard_types.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gruntwork-io/cloud-nuke/HEAD/aws/resources/cloudwatch_dashboard_types.go -------------------------------------------------------------------------------- /aws/resources/cloudwatch_loggroup.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gruntwork-io/cloud-nuke/HEAD/aws/resources/cloudwatch_loggroup.go -------------------------------------------------------------------------------- /aws/resources/cloudwatch_loggroup_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gruntwork-io/cloud-nuke/HEAD/aws/resources/cloudwatch_loggroup_test.go -------------------------------------------------------------------------------- /aws/resources/cloudwatch_loggroup_types.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gruntwork-io/cloud-nuke/HEAD/aws/resources/cloudwatch_loggroup_types.go -------------------------------------------------------------------------------- /aws/resources/codedeploy_application.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gruntwork-io/cloud-nuke/HEAD/aws/resources/codedeploy_application.go -------------------------------------------------------------------------------- /aws/resources/codedeploy_application_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gruntwork-io/cloud-nuke/HEAD/aws/resources/codedeploy_application_test.go -------------------------------------------------------------------------------- /aws/resources/codedeploy_application_types.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gruntwork-io/cloud-nuke/HEAD/aws/resources/codedeploy_application_types.go -------------------------------------------------------------------------------- /aws/resources/common.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gruntwork-io/cloud-nuke/HEAD/aws/resources/common.go -------------------------------------------------------------------------------- /aws/resources/config_recorder.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gruntwork-io/cloud-nuke/HEAD/aws/resources/config_recorder.go -------------------------------------------------------------------------------- /aws/resources/config_recorder_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gruntwork-io/cloud-nuke/HEAD/aws/resources/config_recorder_test.go -------------------------------------------------------------------------------- /aws/resources/config_recorder_types.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gruntwork-io/cloud-nuke/HEAD/aws/resources/config_recorder_types.go -------------------------------------------------------------------------------- /aws/resources/config_service.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gruntwork-io/cloud-nuke/HEAD/aws/resources/config_service.go -------------------------------------------------------------------------------- /aws/resources/config_service_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gruntwork-io/cloud-nuke/HEAD/aws/resources/config_service_test.go -------------------------------------------------------------------------------- /aws/resources/config_service_types.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gruntwork-io/cloud-nuke/HEAD/aws/resources/config_service_types.go -------------------------------------------------------------------------------- /aws/resources/datasync_location.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gruntwork-io/cloud-nuke/HEAD/aws/resources/datasync_location.go -------------------------------------------------------------------------------- /aws/resources/datasync_location_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gruntwork-io/cloud-nuke/HEAD/aws/resources/datasync_location_test.go -------------------------------------------------------------------------------- /aws/resources/datasync_location_types.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gruntwork-io/cloud-nuke/HEAD/aws/resources/datasync_location_types.go -------------------------------------------------------------------------------- /aws/resources/datasync_task.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gruntwork-io/cloud-nuke/HEAD/aws/resources/datasync_task.go -------------------------------------------------------------------------------- /aws/resources/datasync_task_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gruntwork-io/cloud-nuke/HEAD/aws/resources/datasync_task_test.go -------------------------------------------------------------------------------- /aws/resources/datasync_task_types.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gruntwork-io/cloud-nuke/HEAD/aws/resources/datasync_task_types.go -------------------------------------------------------------------------------- /aws/resources/dynamodb.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gruntwork-io/cloud-nuke/HEAD/aws/resources/dynamodb.go -------------------------------------------------------------------------------- /aws/resources/dynamodb_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gruntwork-io/cloud-nuke/HEAD/aws/resources/dynamodb_test.go -------------------------------------------------------------------------------- /aws/resources/dynamodb_types.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gruntwork-io/cloud-nuke/HEAD/aws/resources/dynamodb_types.go -------------------------------------------------------------------------------- /aws/resources/ebs.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gruntwork-io/cloud-nuke/HEAD/aws/resources/ebs.go -------------------------------------------------------------------------------- /aws/resources/ebs_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gruntwork-io/cloud-nuke/HEAD/aws/resources/ebs_test.go -------------------------------------------------------------------------------- /aws/resources/ebs_types.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gruntwork-io/cloud-nuke/HEAD/aws/resources/ebs_types.go -------------------------------------------------------------------------------- /aws/resources/ec2.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gruntwork-io/cloud-nuke/HEAD/aws/resources/ec2.go -------------------------------------------------------------------------------- /aws/resources/ec2_dedicated_host.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gruntwork-io/cloud-nuke/HEAD/aws/resources/ec2_dedicated_host.go -------------------------------------------------------------------------------- /aws/resources/ec2_dedicated_host_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gruntwork-io/cloud-nuke/HEAD/aws/resources/ec2_dedicated_host_test.go -------------------------------------------------------------------------------- /aws/resources/ec2_dedicated_host_types.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gruntwork-io/cloud-nuke/HEAD/aws/resources/ec2_dedicated_host_types.go -------------------------------------------------------------------------------- /aws/resources/ec2_dhcp_option.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gruntwork-io/cloud-nuke/HEAD/aws/resources/ec2_dhcp_option.go -------------------------------------------------------------------------------- /aws/resources/ec2_dhcp_option_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gruntwork-io/cloud-nuke/HEAD/aws/resources/ec2_dhcp_option_test.go -------------------------------------------------------------------------------- /aws/resources/ec2_dhcp_option_types.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gruntwork-io/cloud-nuke/HEAD/aws/resources/ec2_dhcp_option_types.go -------------------------------------------------------------------------------- /aws/resources/ec2_egress_only_igw.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gruntwork-io/cloud-nuke/HEAD/aws/resources/ec2_egress_only_igw.go -------------------------------------------------------------------------------- /aws/resources/ec2_egress_only_igw_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gruntwork-io/cloud-nuke/HEAD/aws/resources/ec2_egress_only_igw_test.go -------------------------------------------------------------------------------- /aws/resources/ec2_egress_only_igw_types.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gruntwork-io/cloud-nuke/HEAD/aws/resources/ec2_egress_only_igw_types.go -------------------------------------------------------------------------------- /aws/resources/ec2_endpoints.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gruntwork-io/cloud-nuke/HEAD/aws/resources/ec2_endpoints.go -------------------------------------------------------------------------------- /aws/resources/ec2_endpoints_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gruntwork-io/cloud-nuke/HEAD/aws/resources/ec2_endpoints_test.go -------------------------------------------------------------------------------- /aws/resources/ec2_endpoints_types.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gruntwork-io/cloud-nuke/HEAD/aws/resources/ec2_endpoints_types.go -------------------------------------------------------------------------------- /aws/resources/ec2_internet_gateway.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gruntwork-io/cloud-nuke/HEAD/aws/resources/ec2_internet_gateway.go -------------------------------------------------------------------------------- /aws/resources/ec2_internet_gateway_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gruntwork-io/cloud-nuke/HEAD/aws/resources/ec2_internet_gateway_test.go -------------------------------------------------------------------------------- /aws/resources/ec2_internet_gateway_types.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gruntwork-io/cloud-nuke/HEAD/aws/resources/ec2_internet_gateway_types.go -------------------------------------------------------------------------------- /aws/resources/ec2_ipam.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gruntwork-io/cloud-nuke/HEAD/aws/resources/ec2_ipam.go -------------------------------------------------------------------------------- /aws/resources/ec2_ipam_byoasn.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gruntwork-io/cloud-nuke/HEAD/aws/resources/ec2_ipam_byoasn.go -------------------------------------------------------------------------------- /aws/resources/ec2_ipam_byoasn_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gruntwork-io/cloud-nuke/HEAD/aws/resources/ec2_ipam_byoasn_test.go -------------------------------------------------------------------------------- /aws/resources/ec2_ipam_byoasn_types.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gruntwork-io/cloud-nuke/HEAD/aws/resources/ec2_ipam_byoasn_types.go -------------------------------------------------------------------------------- /aws/resources/ec2_ipam_custom_allocation.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gruntwork-io/cloud-nuke/HEAD/aws/resources/ec2_ipam_custom_allocation.go -------------------------------------------------------------------------------- /aws/resources/ec2_ipam_custom_allocation_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gruntwork-io/cloud-nuke/HEAD/aws/resources/ec2_ipam_custom_allocation_test.go -------------------------------------------------------------------------------- /aws/resources/ec2_ipam_custom_allocation_types.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gruntwork-io/cloud-nuke/HEAD/aws/resources/ec2_ipam_custom_allocation_types.go -------------------------------------------------------------------------------- /aws/resources/ec2_ipam_pool.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gruntwork-io/cloud-nuke/HEAD/aws/resources/ec2_ipam_pool.go -------------------------------------------------------------------------------- /aws/resources/ec2_ipam_pool_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gruntwork-io/cloud-nuke/HEAD/aws/resources/ec2_ipam_pool_test.go -------------------------------------------------------------------------------- /aws/resources/ec2_ipam_pool_types.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gruntwork-io/cloud-nuke/HEAD/aws/resources/ec2_ipam_pool_types.go -------------------------------------------------------------------------------- /aws/resources/ec2_ipam_resource_discovery.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gruntwork-io/cloud-nuke/HEAD/aws/resources/ec2_ipam_resource_discovery.go -------------------------------------------------------------------------------- /aws/resources/ec2_ipam_resource_discovery_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gruntwork-io/cloud-nuke/HEAD/aws/resources/ec2_ipam_resource_discovery_test.go -------------------------------------------------------------------------------- /aws/resources/ec2_ipam_resource_discovery_types.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gruntwork-io/cloud-nuke/HEAD/aws/resources/ec2_ipam_resource_discovery_types.go -------------------------------------------------------------------------------- /aws/resources/ec2_ipam_scope.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gruntwork-io/cloud-nuke/HEAD/aws/resources/ec2_ipam_scope.go -------------------------------------------------------------------------------- /aws/resources/ec2_ipam_scope_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gruntwork-io/cloud-nuke/HEAD/aws/resources/ec2_ipam_scope_test.go -------------------------------------------------------------------------------- /aws/resources/ec2_ipam_scope_types.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gruntwork-io/cloud-nuke/HEAD/aws/resources/ec2_ipam_scope_types.go -------------------------------------------------------------------------------- /aws/resources/ec2_ipam_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gruntwork-io/cloud-nuke/HEAD/aws/resources/ec2_ipam_test.go -------------------------------------------------------------------------------- /aws/resources/ec2_ipam_types.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gruntwork-io/cloud-nuke/HEAD/aws/resources/ec2_ipam_types.go -------------------------------------------------------------------------------- /aws/resources/ec2_key_pair.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gruntwork-io/cloud-nuke/HEAD/aws/resources/ec2_key_pair.go -------------------------------------------------------------------------------- /aws/resources/ec2_key_pair_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gruntwork-io/cloud-nuke/HEAD/aws/resources/ec2_key_pair_test.go -------------------------------------------------------------------------------- /aws/resources/ec2_key_pair_types.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gruntwork-io/cloud-nuke/HEAD/aws/resources/ec2_key_pair_types.go -------------------------------------------------------------------------------- /aws/resources/ec2_network_acl.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gruntwork-io/cloud-nuke/HEAD/aws/resources/ec2_network_acl.go -------------------------------------------------------------------------------- /aws/resources/ec2_network_acl_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gruntwork-io/cloud-nuke/HEAD/aws/resources/ec2_network_acl_test.go -------------------------------------------------------------------------------- /aws/resources/ec2_network_acl_types.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gruntwork-io/cloud-nuke/HEAD/aws/resources/ec2_network_acl_types.go -------------------------------------------------------------------------------- /aws/resources/ec2_network_interface.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gruntwork-io/cloud-nuke/HEAD/aws/resources/ec2_network_interface.go -------------------------------------------------------------------------------- /aws/resources/ec2_network_interface_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gruntwork-io/cloud-nuke/HEAD/aws/resources/ec2_network_interface_test.go -------------------------------------------------------------------------------- /aws/resources/ec2_network_interface_types.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gruntwork-io/cloud-nuke/HEAD/aws/resources/ec2_network_interface_types.go -------------------------------------------------------------------------------- /aws/resources/ec2_placement_group.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gruntwork-io/cloud-nuke/HEAD/aws/resources/ec2_placement_group.go -------------------------------------------------------------------------------- /aws/resources/ec2_placement_group_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gruntwork-io/cloud-nuke/HEAD/aws/resources/ec2_placement_group_test.go -------------------------------------------------------------------------------- /aws/resources/ec2_placement_group_types.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gruntwork-io/cloud-nuke/HEAD/aws/resources/ec2_placement_group_types.go -------------------------------------------------------------------------------- /aws/resources/ec2_subnet.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gruntwork-io/cloud-nuke/HEAD/aws/resources/ec2_subnet.go -------------------------------------------------------------------------------- /aws/resources/ec2_subnet_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gruntwork-io/cloud-nuke/HEAD/aws/resources/ec2_subnet_test.go -------------------------------------------------------------------------------- /aws/resources/ec2_subnet_types.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gruntwork-io/cloud-nuke/HEAD/aws/resources/ec2_subnet_types.go -------------------------------------------------------------------------------- /aws/resources/ec2_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gruntwork-io/cloud-nuke/HEAD/aws/resources/ec2_test.go -------------------------------------------------------------------------------- /aws/resources/ec2_types.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gruntwork-io/cloud-nuke/HEAD/aws/resources/ec2_types.go -------------------------------------------------------------------------------- /aws/resources/ec2_vpc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gruntwork-io/cloud-nuke/HEAD/aws/resources/ec2_vpc.go -------------------------------------------------------------------------------- /aws/resources/ec2_vpc_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gruntwork-io/cloud-nuke/HEAD/aws/resources/ec2_vpc_test.go -------------------------------------------------------------------------------- /aws/resources/ec2_vpc_types.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gruntwork-io/cloud-nuke/HEAD/aws/resources/ec2_vpc_types.go -------------------------------------------------------------------------------- /aws/resources/ecr.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gruntwork-io/cloud-nuke/HEAD/aws/resources/ecr.go -------------------------------------------------------------------------------- /aws/resources/ecr_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gruntwork-io/cloud-nuke/HEAD/aws/resources/ecr_test.go -------------------------------------------------------------------------------- /aws/resources/ecr_types.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gruntwork-io/cloud-nuke/HEAD/aws/resources/ecr_types.go -------------------------------------------------------------------------------- /aws/resources/ecs_cluster.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gruntwork-io/cloud-nuke/HEAD/aws/resources/ecs_cluster.go -------------------------------------------------------------------------------- /aws/resources/ecs_cluster_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gruntwork-io/cloud-nuke/HEAD/aws/resources/ecs_cluster_test.go -------------------------------------------------------------------------------- /aws/resources/ecs_cluster_types.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gruntwork-io/cloud-nuke/HEAD/aws/resources/ecs_cluster_types.go -------------------------------------------------------------------------------- /aws/resources/ecs_service.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gruntwork-io/cloud-nuke/HEAD/aws/resources/ecs_service.go -------------------------------------------------------------------------------- /aws/resources/ecs_service_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gruntwork-io/cloud-nuke/HEAD/aws/resources/ecs_service_test.go -------------------------------------------------------------------------------- /aws/resources/ecs_service_types.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gruntwork-io/cloud-nuke/HEAD/aws/resources/ecs_service_types.go -------------------------------------------------------------------------------- /aws/resources/efs.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gruntwork-io/cloud-nuke/HEAD/aws/resources/efs.go -------------------------------------------------------------------------------- /aws/resources/efs_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gruntwork-io/cloud-nuke/HEAD/aws/resources/efs_test.go -------------------------------------------------------------------------------- /aws/resources/efs_types.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gruntwork-io/cloud-nuke/HEAD/aws/resources/efs_types.go -------------------------------------------------------------------------------- /aws/resources/eip.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gruntwork-io/cloud-nuke/HEAD/aws/resources/eip.go -------------------------------------------------------------------------------- /aws/resources/eip_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gruntwork-io/cloud-nuke/HEAD/aws/resources/eip_test.go -------------------------------------------------------------------------------- /aws/resources/eip_types.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gruntwork-io/cloud-nuke/HEAD/aws/resources/eip_types.go -------------------------------------------------------------------------------- /aws/resources/eks.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gruntwork-io/cloud-nuke/HEAD/aws/resources/eks.go -------------------------------------------------------------------------------- /aws/resources/eks_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gruntwork-io/cloud-nuke/HEAD/aws/resources/eks_test.go -------------------------------------------------------------------------------- /aws/resources/eks_types.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gruntwork-io/cloud-nuke/HEAD/aws/resources/eks_types.go -------------------------------------------------------------------------------- /aws/resources/elastic_beanstalk.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gruntwork-io/cloud-nuke/HEAD/aws/resources/elastic_beanstalk.go -------------------------------------------------------------------------------- /aws/resources/elastic_beanstalk_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gruntwork-io/cloud-nuke/HEAD/aws/resources/elastic_beanstalk_test.go -------------------------------------------------------------------------------- /aws/resources/elastic_beanstalk_types.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gruntwork-io/cloud-nuke/HEAD/aws/resources/elastic_beanstalk_types.go -------------------------------------------------------------------------------- /aws/resources/elasticache.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gruntwork-io/cloud-nuke/HEAD/aws/resources/elasticache.go -------------------------------------------------------------------------------- /aws/resources/elasticache_serverless.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gruntwork-io/cloud-nuke/HEAD/aws/resources/elasticache_serverless.go -------------------------------------------------------------------------------- /aws/resources/elasticache_serverless_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gruntwork-io/cloud-nuke/HEAD/aws/resources/elasticache_serverless_test.go -------------------------------------------------------------------------------- /aws/resources/elasticache_serverless_types.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gruntwork-io/cloud-nuke/HEAD/aws/resources/elasticache_serverless_types.go -------------------------------------------------------------------------------- /aws/resources/elasticache_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gruntwork-io/cloud-nuke/HEAD/aws/resources/elasticache_test.go -------------------------------------------------------------------------------- /aws/resources/elasticache_types.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gruntwork-io/cloud-nuke/HEAD/aws/resources/elasticache_types.go -------------------------------------------------------------------------------- /aws/resources/elb.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gruntwork-io/cloud-nuke/HEAD/aws/resources/elb.go -------------------------------------------------------------------------------- /aws/resources/elb_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gruntwork-io/cloud-nuke/HEAD/aws/resources/elb_test.go -------------------------------------------------------------------------------- /aws/resources/elb_types.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gruntwork-io/cloud-nuke/HEAD/aws/resources/elb_types.go -------------------------------------------------------------------------------- /aws/resources/elbv2.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gruntwork-io/cloud-nuke/HEAD/aws/resources/elbv2.go -------------------------------------------------------------------------------- /aws/resources/elbv2_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gruntwork-io/cloud-nuke/HEAD/aws/resources/elbv2_test.go -------------------------------------------------------------------------------- /aws/resources/elbv2_types.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gruntwork-io/cloud-nuke/HEAD/aws/resources/elbv2_types.go -------------------------------------------------------------------------------- /aws/resources/eventbridge.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gruntwork-io/cloud-nuke/HEAD/aws/resources/eventbridge.go -------------------------------------------------------------------------------- /aws/resources/eventbridge_archive.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gruntwork-io/cloud-nuke/HEAD/aws/resources/eventbridge_archive.go -------------------------------------------------------------------------------- /aws/resources/eventbridge_archive_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gruntwork-io/cloud-nuke/HEAD/aws/resources/eventbridge_archive_test.go -------------------------------------------------------------------------------- /aws/resources/eventbridge_archive_types.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gruntwork-io/cloud-nuke/HEAD/aws/resources/eventbridge_archive_types.go -------------------------------------------------------------------------------- /aws/resources/eventbridge_rule.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gruntwork-io/cloud-nuke/HEAD/aws/resources/eventbridge_rule.go -------------------------------------------------------------------------------- /aws/resources/eventbridge_rule_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gruntwork-io/cloud-nuke/HEAD/aws/resources/eventbridge_rule_test.go -------------------------------------------------------------------------------- /aws/resources/eventbridge_rule_types.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gruntwork-io/cloud-nuke/HEAD/aws/resources/eventbridge_rule_types.go -------------------------------------------------------------------------------- /aws/resources/eventbridge_schedule.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gruntwork-io/cloud-nuke/HEAD/aws/resources/eventbridge_schedule.go -------------------------------------------------------------------------------- /aws/resources/eventbridge_schedule_group.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gruntwork-io/cloud-nuke/HEAD/aws/resources/eventbridge_schedule_group.go -------------------------------------------------------------------------------- /aws/resources/eventbridge_schedule_group_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gruntwork-io/cloud-nuke/HEAD/aws/resources/eventbridge_schedule_group_test.go -------------------------------------------------------------------------------- /aws/resources/eventbridge_schedule_group_types.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gruntwork-io/cloud-nuke/HEAD/aws/resources/eventbridge_schedule_group_types.go -------------------------------------------------------------------------------- /aws/resources/eventbridge_schedule_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gruntwork-io/cloud-nuke/HEAD/aws/resources/eventbridge_schedule_test.go -------------------------------------------------------------------------------- /aws/resources/eventbridge_schedule_types.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gruntwork-io/cloud-nuke/HEAD/aws/resources/eventbridge_schedule_types.go -------------------------------------------------------------------------------- /aws/resources/eventbridge_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gruntwork-io/cloud-nuke/HEAD/aws/resources/eventbridge_test.go -------------------------------------------------------------------------------- /aws/resources/eventbridge_types.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gruntwork-io/cloud-nuke/HEAD/aws/resources/eventbridge_types.go -------------------------------------------------------------------------------- /aws/resources/globals.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gruntwork-io/cloud-nuke/HEAD/aws/resources/globals.go -------------------------------------------------------------------------------- /aws/resources/grafana.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gruntwork-io/cloud-nuke/HEAD/aws/resources/grafana.go -------------------------------------------------------------------------------- /aws/resources/grafana_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gruntwork-io/cloud-nuke/HEAD/aws/resources/grafana_test.go -------------------------------------------------------------------------------- /aws/resources/grafana_types.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gruntwork-io/cloud-nuke/HEAD/aws/resources/grafana_types.go -------------------------------------------------------------------------------- /aws/resources/guardduty.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gruntwork-io/cloud-nuke/HEAD/aws/resources/guardduty.go -------------------------------------------------------------------------------- /aws/resources/guardduty_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gruntwork-io/cloud-nuke/HEAD/aws/resources/guardduty_test.go -------------------------------------------------------------------------------- /aws/resources/guardduty_types.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gruntwork-io/cloud-nuke/HEAD/aws/resources/guardduty_types.go -------------------------------------------------------------------------------- /aws/resources/iam.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gruntwork-io/cloud-nuke/HEAD/aws/resources/iam.go -------------------------------------------------------------------------------- /aws/resources/iam_group.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gruntwork-io/cloud-nuke/HEAD/aws/resources/iam_group.go -------------------------------------------------------------------------------- /aws/resources/iam_group_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gruntwork-io/cloud-nuke/HEAD/aws/resources/iam_group_test.go -------------------------------------------------------------------------------- /aws/resources/iam_group_types.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gruntwork-io/cloud-nuke/HEAD/aws/resources/iam_group_types.go -------------------------------------------------------------------------------- /aws/resources/iam_instance_profile.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gruntwork-io/cloud-nuke/HEAD/aws/resources/iam_instance_profile.go -------------------------------------------------------------------------------- /aws/resources/iam_instance_profile_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gruntwork-io/cloud-nuke/HEAD/aws/resources/iam_instance_profile_test.go -------------------------------------------------------------------------------- /aws/resources/iam_instance_profile_types.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gruntwork-io/cloud-nuke/HEAD/aws/resources/iam_instance_profile_types.go -------------------------------------------------------------------------------- /aws/resources/iam_policy.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gruntwork-io/cloud-nuke/HEAD/aws/resources/iam_policy.go -------------------------------------------------------------------------------- /aws/resources/iam_policy_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gruntwork-io/cloud-nuke/HEAD/aws/resources/iam_policy_test.go -------------------------------------------------------------------------------- /aws/resources/iam_policy_types.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gruntwork-io/cloud-nuke/HEAD/aws/resources/iam_policy_types.go -------------------------------------------------------------------------------- /aws/resources/iam_role.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gruntwork-io/cloud-nuke/HEAD/aws/resources/iam_role.go -------------------------------------------------------------------------------- /aws/resources/iam_role_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gruntwork-io/cloud-nuke/HEAD/aws/resources/iam_role_test.go -------------------------------------------------------------------------------- /aws/resources/iam_role_types.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gruntwork-io/cloud-nuke/HEAD/aws/resources/iam_role_types.go -------------------------------------------------------------------------------- /aws/resources/iam_service_linked_role.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gruntwork-io/cloud-nuke/HEAD/aws/resources/iam_service_linked_role.go -------------------------------------------------------------------------------- /aws/resources/iam_service_linked_role_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gruntwork-io/cloud-nuke/HEAD/aws/resources/iam_service_linked_role_test.go -------------------------------------------------------------------------------- /aws/resources/iam_service_linked_role_types.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gruntwork-io/cloud-nuke/HEAD/aws/resources/iam_service_linked_role_types.go -------------------------------------------------------------------------------- /aws/resources/iam_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gruntwork-io/cloud-nuke/HEAD/aws/resources/iam_test.go -------------------------------------------------------------------------------- /aws/resources/iam_types.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gruntwork-io/cloud-nuke/HEAD/aws/resources/iam_types.go -------------------------------------------------------------------------------- /aws/resources/kinesis_firehose.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gruntwork-io/cloud-nuke/HEAD/aws/resources/kinesis_firehose.go -------------------------------------------------------------------------------- /aws/resources/kinesis_firehose_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gruntwork-io/cloud-nuke/HEAD/aws/resources/kinesis_firehose_test.go -------------------------------------------------------------------------------- /aws/resources/kinesis_firehose_types.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gruntwork-io/cloud-nuke/HEAD/aws/resources/kinesis_firehose_types.go -------------------------------------------------------------------------------- /aws/resources/kinesis_stream.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gruntwork-io/cloud-nuke/HEAD/aws/resources/kinesis_stream.go -------------------------------------------------------------------------------- /aws/resources/kinesis_stream_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gruntwork-io/cloud-nuke/HEAD/aws/resources/kinesis_stream_test.go -------------------------------------------------------------------------------- /aws/resources/kinesis_stream_types.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gruntwork-io/cloud-nuke/HEAD/aws/resources/kinesis_stream_types.go -------------------------------------------------------------------------------- /aws/resources/kms_customer_key.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gruntwork-io/cloud-nuke/HEAD/aws/resources/kms_customer_key.go -------------------------------------------------------------------------------- /aws/resources/kms_customer_key_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gruntwork-io/cloud-nuke/HEAD/aws/resources/kms_customer_key_test.go -------------------------------------------------------------------------------- /aws/resources/kms_customer_key_types.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gruntwork-io/cloud-nuke/HEAD/aws/resources/kms_customer_key_types.go -------------------------------------------------------------------------------- /aws/resources/lambda.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gruntwork-io/cloud-nuke/HEAD/aws/resources/lambda.go -------------------------------------------------------------------------------- /aws/resources/lambda_layer.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gruntwork-io/cloud-nuke/HEAD/aws/resources/lambda_layer.go -------------------------------------------------------------------------------- /aws/resources/lambda_layer_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gruntwork-io/cloud-nuke/HEAD/aws/resources/lambda_layer_test.go -------------------------------------------------------------------------------- /aws/resources/lambda_layer_types.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gruntwork-io/cloud-nuke/HEAD/aws/resources/lambda_layer_types.go -------------------------------------------------------------------------------- /aws/resources/lambda_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gruntwork-io/cloud-nuke/HEAD/aws/resources/lambda_test.go -------------------------------------------------------------------------------- /aws/resources/lambda_types.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gruntwork-io/cloud-nuke/HEAD/aws/resources/lambda_types.go -------------------------------------------------------------------------------- /aws/resources/launch_config.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gruntwork-io/cloud-nuke/HEAD/aws/resources/launch_config.go -------------------------------------------------------------------------------- /aws/resources/launch_config_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gruntwork-io/cloud-nuke/HEAD/aws/resources/launch_config_test.go -------------------------------------------------------------------------------- /aws/resources/launch_config_types.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gruntwork-io/cloud-nuke/HEAD/aws/resources/launch_config_types.go -------------------------------------------------------------------------------- /aws/resources/launch_template.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gruntwork-io/cloud-nuke/HEAD/aws/resources/launch_template.go -------------------------------------------------------------------------------- /aws/resources/launch_template_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gruntwork-io/cloud-nuke/HEAD/aws/resources/launch_template_test.go -------------------------------------------------------------------------------- /aws/resources/launch_template_types.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gruntwork-io/cloud-nuke/HEAD/aws/resources/launch_template_types.go -------------------------------------------------------------------------------- /aws/resources/macie.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gruntwork-io/cloud-nuke/HEAD/aws/resources/macie.go -------------------------------------------------------------------------------- /aws/resources/macie_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gruntwork-io/cloud-nuke/HEAD/aws/resources/macie_test.go -------------------------------------------------------------------------------- /aws/resources/macie_types.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gruntwork-io/cloud-nuke/HEAD/aws/resources/macie_types.go -------------------------------------------------------------------------------- /aws/resources/managed_prometheus.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gruntwork-io/cloud-nuke/HEAD/aws/resources/managed_prometheus.go -------------------------------------------------------------------------------- /aws/resources/managed_prometheus_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gruntwork-io/cloud-nuke/HEAD/aws/resources/managed_prometheus_test.go -------------------------------------------------------------------------------- /aws/resources/managed_prometheus_types.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gruntwork-io/cloud-nuke/HEAD/aws/resources/managed_prometheus_types.go -------------------------------------------------------------------------------- /aws/resources/msk_cluster.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gruntwork-io/cloud-nuke/HEAD/aws/resources/msk_cluster.go -------------------------------------------------------------------------------- /aws/resources/msk_cluster_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gruntwork-io/cloud-nuke/HEAD/aws/resources/msk_cluster_test.go -------------------------------------------------------------------------------- /aws/resources/msk_cluster_types.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gruntwork-io/cloud-nuke/HEAD/aws/resources/msk_cluster_types.go -------------------------------------------------------------------------------- /aws/resources/nat_gateway.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gruntwork-io/cloud-nuke/HEAD/aws/resources/nat_gateway.go -------------------------------------------------------------------------------- /aws/resources/nat_gateway_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gruntwork-io/cloud-nuke/HEAD/aws/resources/nat_gateway_test.go -------------------------------------------------------------------------------- /aws/resources/nat_gateway_types.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gruntwork-io/cloud-nuke/HEAD/aws/resources/nat_gateway_types.go -------------------------------------------------------------------------------- /aws/resources/network_firewall.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gruntwork-io/cloud-nuke/HEAD/aws/resources/network_firewall.go -------------------------------------------------------------------------------- /aws/resources/network_firewall_policy.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gruntwork-io/cloud-nuke/HEAD/aws/resources/network_firewall_policy.go -------------------------------------------------------------------------------- /aws/resources/network_firewall_policy_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gruntwork-io/cloud-nuke/HEAD/aws/resources/network_firewall_policy_test.go -------------------------------------------------------------------------------- /aws/resources/network_firewall_policy_types.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gruntwork-io/cloud-nuke/HEAD/aws/resources/network_firewall_policy_types.go -------------------------------------------------------------------------------- /aws/resources/network_firewall_resource_policy.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gruntwork-io/cloud-nuke/HEAD/aws/resources/network_firewall_resource_policy.go -------------------------------------------------------------------------------- /aws/resources/network_firewall_resource_policy_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gruntwork-io/cloud-nuke/HEAD/aws/resources/network_firewall_resource_policy_test.go -------------------------------------------------------------------------------- /aws/resources/network_firewall_resource_policy_types.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gruntwork-io/cloud-nuke/HEAD/aws/resources/network_firewall_resource_policy_types.go -------------------------------------------------------------------------------- /aws/resources/network_firewall_rule_group.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gruntwork-io/cloud-nuke/HEAD/aws/resources/network_firewall_rule_group.go -------------------------------------------------------------------------------- /aws/resources/network_firewall_rule_group_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gruntwork-io/cloud-nuke/HEAD/aws/resources/network_firewall_rule_group_test.go -------------------------------------------------------------------------------- /aws/resources/network_firewall_rule_group_types.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gruntwork-io/cloud-nuke/HEAD/aws/resources/network_firewall_rule_group_types.go -------------------------------------------------------------------------------- /aws/resources/network_firewall_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gruntwork-io/cloud-nuke/HEAD/aws/resources/network_firewall_test.go -------------------------------------------------------------------------------- /aws/resources/network_firewall_tls_config.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gruntwork-io/cloud-nuke/HEAD/aws/resources/network_firewall_tls_config.go -------------------------------------------------------------------------------- /aws/resources/network_firewall_tls_config_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gruntwork-io/cloud-nuke/HEAD/aws/resources/network_firewall_tls_config_test.go -------------------------------------------------------------------------------- /aws/resources/network_firewall_tls_config_types.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gruntwork-io/cloud-nuke/HEAD/aws/resources/network_firewall_tls_config_types.go -------------------------------------------------------------------------------- /aws/resources/network_firewall_types.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gruntwork-io/cloud-nuke/HEAD/aws/resources/network_firewall_types.go -------------------------------------------------------------------------------- /aws/resources/oidc_provider.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gruntwork-io/cloud-nuke/HEAD/aws/resources/oidc_provider.go -------------------------------------------------------------------------------- /aws/resources/oidc_provider_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gruntwork-io/cloud-nuke/HEAD/aws/resources/oidc_provider_test.go -------------------------------------------------------------------------------- /aws/resources/oidc_provider_types.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gruntwork-io/cloud-nuke/HEAD/aws/resources/oidc_provider_types.go -------------------------------------------------------------------------------- /aws/resources/opensearch.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gruntwork-io/cloud-nuke/HEAD/aws/resources/opensearch.go -------------------------------------------------------------------------------- /aws/resources/opensearch_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gruntwork-io/cloud-nuke/HEAD/aws/resources/opensearch_test.go -------------------------------------------------------------------------------- /aws/resources/opensearch_types.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gruntwork-io/cloud-nuke/HEAD/aws/resources/opensearch_types.go -------------------------------------------------------------------------------- /aws/resources/rds.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gruntwork-io/cloud-nuke/HEAD/aws/resources/rds.go -------------------------------------------------------------------------------- /aws/resources/rds_cluster.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gruntwork-io/cloud-nuke/HEAD/aws/resources/rds_cluster.go -------------------------------------------------------------------------------- /aws/resources/rds_cluster_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gruntwork-io/cloud-nuke/HEAD/aws/resources/rds_cluster_test.go -------------------------------------------------------------------------------- /aws/resources/rds_cluster_types.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gruntwork-io/cloud-nuke/HEAD/aws/resources/rds_cluster_types.go -------------------------------------------------------------------------------- /aws/resources/rds_global_cluster.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gruntwork-io/cloud-nuke/HEAD/aws/resources/rds_global_cluster.go -------------------------------------------------------------------------------- /aws/resources/rds_global_cluster_membership.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gruntwork-io/cloud-nuke/HEAD/aws/resources/rds_global_cluster_membership.go -------------------------------------------------------------------------------- /aws/resources/rds_global_cluster_membership_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gruntwork-io/cloud-nuke/HEAD/aws/resources/rds_global_cluster_membership_test.go -------------------------------------------------------------------------------- /aws/resources/rds_global_cluster_membership_types.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gruntwork-io/cloud-nuke/HEAD/aws/resources/rds_global_cluster_membership_types.go -------------------------------------------------------------------------------- /aws/resources/rds_global_cluster_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gruntwork-io/cloud-nuke/HEAD/aws/resources/rds_global_cluster_test.go -------------------------------------------------------------------------------- /aws/resources/rds_global_cluster_types.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gruntwork-io/cloud-nuke/HEAD/aws/resources/rds_global_cluster_types.go -------------------------------------------------------------------------------- /aws/resources/rds_parameter_group.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gruntwork-io/cloud-nuke/HEAD/aws/resources/rds_parameter_group.go -------------------------------------------------------------------------------- /aws/resources/rds_parameter_group_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gruntwork-io/cloud-nuke/HEAD/aws/resources/rds_parameter_group_test.go -------------------------------------------------------------------------------- /aws/resources/rds_parameter_group_types.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gruntwork-io/cloud-nuke/HEAD/aws/resources/rds_parameter_group_types.go -------------------------------------------------------------------------------- /aws/resources/rds_proxy.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gruntwork-io/cloud-nuke/HEAD/aws/resources/rds_proxy.go -------------------------------------------------------------------------------- /aws/resources/rds_proxy_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gruntwork-io/cloud-nuke/HEAD/aws/resources/rds_proxy_test.go -------------------------------------------------------------------------------- /aws/resources/rds_proxy_types.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gruntwork-io/cloud-nuke/HEAD/aws/resources/rds_proxy_types.go -------------------------------------------------------------------------------- /aws/resources/rds_snapshot.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gruntwork-io/cloud-nuke/HEAD/aws/resources/rds_snapshot.go -------------------------------------------------------------------------------- /aws/resources/rds_snapshot_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gruntwork-io/cloud-nuke/HEAD/aws/resources/rds_snapshot_test.go -------------------------------------------------------------------------------- /aws/resources/rds_snapshot_types.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gruntwork-io/cloud-nuke/HEAD/aws/resources/rds_snapshot_types.go -------------------------------------------------------------------------------- /aws/resources/rds_subnet_group.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gruntwork-io/cloud-nuke/HEAD/aws/resources/rds_subnet_group.go -------------------------------------------------------------------------------- /aws/resources/rds_subnet_group_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gruntwork-io/cloud-nuke/HEAD/aws/resources/rds_subnet_group_test.go -------------------------------------------------------------------------------- /aws/resources/rds_subnet_group_types.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gruntwork-io/cloud-nuke/HEAD/aws/resources/rds_subnet_group_types.go -------------------------------------------------------------------------------- /aws/resources/rds_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gruntwork-io/cloud-nuke/HEAD/aws/resources/rds_test.go -------------------------------------------------------------------------------- /aws/resources/rds_types.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gruntwork-io/cloud-nuke/HEAD/aws/resources/rds_types.go -------------------------------------------------------------------------------- /aws/resources/redshift.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gruntwork-io/cloud-nuke/HEAD/aws/resources/redshift.go -------------------------------------------------------------------------------- /aws/resources/redshift_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gruntwork-io/cloud-nuke/HEAD/aws/resources/redshift_test.go -------------------------------------------------------------------------------- /aws/resources/redshift_types.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gruntwork-io/cloud-nuke/HEAD/aws/resources/redshift_types.go -------------------------------------------------------------------------------- /aws/resources/route53_cidr_collection.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gruntwork-io/cloud-nuke/HEAD/aws/resources/route53_cidr_collection.go -------------------------------------------------------------------------------- /aws/resources/route53_cidr_collection_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gruntwork-io/cloud-nuke/HEAD/aws/resources/route53_cidr_collection_test.go -------------------------------------------------------------------------------- /aws/resources/route53_cidr_collection_types.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gruntwork-io/cloud-nuke/HEAD/aws/resources/route53_cidr_collection_types.go -------------------------------------------------------------------------------- /aws/resources/route53_hostedzone.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gruntwork-io/cloud-nuke/HEAD/aws/resources/route53_hostedzone.go -------------------------------------------------------------------------------- /aws/resources/route53_hostedzone_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gruntwork-io/cloud-nuke/HEAD/aws/resources/route53_hostedzone_test.go -------------------------------------------------------------------------------- /aws/resources/route53_hostedzone_types.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gruntwork-io/cloud-nuke/HEAD/aws/resources/route53_hostedzone_types.go -------------------------------------------------------------------------------- /aws/resources/route53_traffic_policy.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gruntwork-io/cloud-nuke/HEAD/aws/resources/route53_traffic_policy.go -------------------------------------------------------------------------------- /aws/resources/route53_traffic_policy_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gruntwork-io/cloud-nuke/HEAD/aws/resources/route53_traffic_policy_test.go -------------------------------------------------------------------------------- /aws/resources/route53_traffic_policy_types.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gruntwork-io/cloud-nuke/HEAD/aws/resources/route53_traffic_policy_types.go -------------------------------------------------------------------------------- /aws/resources/s3.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gruntwork-io/cloud-nuke/HEAD/aws/resources/s3.go -------------------------------------------------------------------------------- /aws/resources/s3_access_point.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gruntwork-io/cloud-nuke/HEAD/aws/resources/s3_access_point.go -------------------------------------------------------------------------------- /aws/resources/s3_access_point_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gruntwork-io/cloud-nuke/HEAD/aws/resources/s3_access_point_test.go -------------------------------------------------------------------------------- /aws/resources/s3_access_point_types.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gruntwork-io/cloud-nuke/HEAD/aws/resources/s3_access_point_types.go -------------------------------------------------------------------------------- /aws/resources/s3_multi_region_access_point.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gruntwork-io/cloud-nuke/HEAD/aws/resources/s3_multi_region_access_point.go -------------------------------------------------------------------------------- /aws/resources/s3_multi_region_access_point_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gruntwork-io/cloud-nuke/HEAD/aws/resources/s3_multi_region_access_point_test.go -------------------------------------------------------------------------------- /aws/resources/s3_multi_region_access_point_types.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gruntwork-io/cloud-nuke/HEAD/aws/resources/s3_multi_region_access_point_types.go -------------------------------------------------------------------------------- /aws/resources/s3_object_lambda_access_point.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gruntwork-io/cloud-nuke/HEAD/aws/resources/s3_object_lambda_access_point.go -------------------------------------------------------------------------------- /aws/resources/s3_object_lambda_access_point_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gruntwork-io/cloud-nuke/HEAD/aws/resources/s3_object_lambda_access_point_test.go -------------------------------------------------------------------------------- /aws/resources/s3_object_lambda_access_point_types.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gruntwork-io/cloud-nuke/HEAD/aws/resources/s3_object_lambda_access_point_types.go -------------------------------------------------------------------------------- /aws/resources/s3_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gruntwork-io/cloud-nuke/HEAD/aws/resources/s3_test.go -------------------------------------------------------------------------------- /aws/resources/s3_types.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gruntwork-io/cloud-nuke/HEAD/aws/resources/s3_types.go -------------------------------------------------------------------------------- /aws/resources/sagemaker_endpoint.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gruntwork-io/cloud-nuke/HEAD/aws/resources/sagemaker_endpoint.go -------------------------------------------------------------------------------- /aws/resources/sagemaker_endpoint_config.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gruntwork-io/cloud-nuke/HEAD/aws/resources/sagemaker_endpoint_config.go -------------------------------------------------------------------------------- /aws/resources/sagemaker_endpoint_config_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gruntwork-io/cloud-nuke/HEAD/aws/resources/sagemaker_endpoint_config_test.go -------------------------------------------------------------------------------- /aws/resources/sagemaker_endpoint_config_types.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gruntwork-io/cloud-nuke/HEAD/aws/resources/sagemaker_endpoint_config_types.go -------------------------------------------------------------------------------- /aws/resources/sagemaker_endpoint_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gruntwork-io/cloud-nuke/HEAD/aws/resources/sagemaker_endpoint_test.go -------------------------------------------------------------------------------- /aws/resources/sagemaker_endpoint_types.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gruntwork-io/cloud-nuke/HEAD/aws/resources/sagemaker_endpoint_types.go -------------------------------------------------------------------------------- /aws/resources/sagemaker_notebook_instance.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gruntwork-io/cloud-nuke/HEAD/aws/resources/sagemaker_notebook_instance.go -------------------------------------------------------------------------------- /aws/resources/sagemaker_notebook_instance_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gruntwork-io/cloud-nuke/HEAD/aws/resources/sagemaker_notebook_instance_test.go -------------------------------------------------------------------------------- /aws/resources/sagemaker_notebook_instance_types.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gruntwork-io/cloud-nuke/HEAD/aws/resources/sagemaker_notebook_instance_types.go -------------------------------------------------------------------------------- /aws/resources/sagemaker_studio.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gruntwork-io/cloud-nuke/HEAD/aws/resources/sagemaker_studio.go -------------------------------------------------------------------------------- /aws/resources/sagemaker_studio_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gruntwork-io/cloud-nuke/HEAD/aws/resources/sagemaker_studio_test.go -------------------------------------------------------------------------------- /aws/resources/sagemaker_studio_types.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gruntwork-io/cloud-nuke/HEAD/aws/resources/sagemaker_studio_types.go -------------------------------------------------------------------------------- /aws/resources/secrets_manager.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gruntwork-io/cloud-nuke/HEAD/aws/resources/secrets_manager.go -------------------------------------------------------------------------------- /aws/resources/secrets_manager_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gruntwork-io/cloud-nuke/HEAD/aws/resources/secrets_manager_test.go -------------------------------------------------------------------------------- /aws/resources/secrets_manager_types.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gruntwork-io/cloud-nuke/HEAD/aws/resources/secrets_manager_types.go -------------------------------------------------------------------------------- /aws/resources/security_group.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gruntwork-io/cloud-nuke/HEAD/aws/resources/security_group.go -------------------------------------------------------------------------------- /aws/resources/security_group_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gruntwork-io/cloud-nuke/HEAD/aws/resources/security_group_test.go -------------------------------------------------------------------------------- /aws/resources/security_group_types.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gruntwork-io/cloud-nuke/HEAD/aws/resources/security_group_types.go -------------------------------------------------------------------------------- /aws/resources/security_hub.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gruntwork-io/cloud-nuke/HEAD/aws/resources/security_hub.go -------------------------------------------------------------------------------- /aws/resources/security_hub_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gruntwork-io/cloud-nuke/HEAD/aws/resources/security_hub_test.go -------------------------------------------------------------------------------- /aws/resources/security_hub_types.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gruntwork-io/cloud-nuke/HEAD/aws/resources/security_hub_types.go -------------------------------------------------------------------------------- /aws/resources/ses_configuration_set.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gruntwork-io/cloud-nuke/HEAD/aws/resources/ses_configuration_set.go -------------------------------------------------------------------------------- /aws/resources/ses_configuration_set_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gruntwork-io/cloud-nuke/HEAD/aws/resources/ses_configuration_set_test.go -------------------------------------------------------------------------------- /aws/resources/ses_configuration_set_types.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gruntwork-io/cloud-nuke/HEAD/aws/resources/ses_configuration_set_types.go -------------------------------------------------------------------------------- /aws/resources/ses_email_receiving.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gruntwork-io/cloud-nuke/HEAD/aws/resources/ses_email_receiving.go -------------------------------------------------------------------------------- /aws/resources/ses_email_receiving_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gruntwork-io/cloud-nuke/HEAD/aws/resources/ses_email_receiving_test.go -------------------------------------------------------------------------------- /aws/resources/ses_email_receiving_types.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gruntwork-io/cloud-nuke/HEAD/aws/resources/ses_email_receiving_types.go -------------------------------------------------------------------------------- /aws/resources/ses_email_templates.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gruntwork-io/cloud-nuke/HEAD/aws/resources/ses_email_templates.go -------------------------------------------------------------------------------- /aws/resources/ses_email_templates_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gruntwork-io/cloud-nuke/HEAD/aws/resources/ses_email_templates_test.go -------------------------------------------------------------------------------- /aws/resources/ses_email_templates_types.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gruntwork-io/cloud-nuke/HEAD/aws/resources/ses_email_templates_types.go -------------------------------------------------------------------------------- /aws/resources/ses_identity.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gruntwork-io/cloud-nuke/HEAD/aws/resources/ses_identity.go -------------------------------------------------------------------------------- /aws/resources/ses_identity_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gruntwork-io/cloud-nuke/HEAD/aws/resources/ses_identity_test.go -------------------------------------------------------------------------------- /aws/resources/ses_identity_types.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gruntwork-io/cloud-nuke/HEAD/aws/resources/ses_identity_types.go -------------------------------------------------------------------------------- /aws/resources/snapshot.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gruntwork-io/cloud-nuke/HEAD/aws/resources/snapshot.go -------------------------------------------------------------------------------- /aws/resources/snapshot_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gruntwork-io/cloud-nuke/HEAD/aws/resources/snapshot_test.go -------------------------------------------------------------------------------- /aws/resources/snapshot_types.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gruntwork-io/cloud-nuke/HEAD/aws/resources/snapshot_types.go -------------------------------------------------------------------------------- /aws/resources/sns.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gruntwork-io/cloud-nuke/HEAD/aws/resources/sns.go -------------------------------------------------------------------------------- /aws/resources/sns_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gruntwork-io/cloud-nuke/HEAD/aws/resources/sns_test.go -------------------------------------------------------------------------------- /aws/resources/sns_types.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gruntwork-io/cloud-nuke/HEAD/aws/resources/sns_types.go -------------------------------------------------------------------------------- /aws/resources/sqs.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gruntwork-io/cloud-nuke/HEAD/aws/resources/sqs.go -------------------------------------------------------------------------------- /aws/resources/sqs_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gruntwork-io/cloud-nuke/HEAD/aws/resources/sqs_test.go -------------------------------------------------------------------------------- /aws/resources/sqs_types.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gruntwork-io/cloud-nuke/HEAD/aws/resources/sqs_types.go -------------------------------------------------------------------------------- /aws/resources/tgw_peering_attachment.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gruntwork-io/cloud-nuke/HEAD/aws/resources/tgw_peering_attachment.go -------------------------------------------------------------------------------- /aws/resources/tgw_peering_attachment_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gruntwork-io/cloud-nuke/HEAD/aws/resources/tgw_peering_attachment_test.go -------------------------------------------------------------------------------- /aws/resources/tgw_peering_attachment_types.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gruntwork-io/cloud-nuke/HEAD/aws/resources/tgw_peering_attachment_types.go -------------------------------------------------------------------------------- /aws/resources/tgw_route_tables.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gruntwork-io/cloud-nuke/HEAD/aws/resources/tgw_route_tables.go -------------------------------------------------------------------------------- /aws/resources/tgw_route_tables_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gruntwork-io/cloud-nuke/HEAD/aws/resources/tgw_route_tables_test.go -------------------------------------------------------------------------------- /aws/resources/tgw_route_tables_types.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gruntwork-io/cloud-nuke/HEAD/aws/resources/tgw_route_tables_types.go -------------------------------------------------------------------------------- /aws/resources/tgw_vpc_attachment.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gruntwork-io/cloud-nuke/HEAD/aws/resources/tgw_vpc_attachment.go -------------------------------------------------------------------------------- /aws/resources/tgw_vpc_attachment_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gruntwork-io/cloud-nuke/HEAD/aws/resources/tgw_vpc_attachment_test.go -------------------------------------------------------------------------------- /aws/resources/tgw_vpc_attachment_types.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gruntwork-io/cloud-nuke/HEAD/aws/resources/tgw_vpc_attachment_types.go -------------------------------------------------------------------------------- /aws/resources/transit_gateway.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gruntwork-io/cloud-nuke/HEAD/aws/resources/transit_gateway.go -------------------------------------------------------------------------------- /aws/resources/transit_gateway_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gruntwork-io/cloud-nuke/HEAD/aws/resources/transit_gateway_test.go -------------------------------------------------------------------------------- /aws/resources/transit_gateway_types.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gruntwork-io/cloud-nuke/HEAD/aws/resources/transit_gateway_types.go -------------------------------------------------------------------------------- /aws/resources/vpc_lattice_service.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gruntwork-io/cloud-nuke/HEAD/aws/resources/vpc_lattice_service.go -------------------------------------------------------------------------------- /aws/resources/vpc_lattice_service_network.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gruntwork-io/cloud-nuke/HEAD/aws/resources/vpc_lattice_service_network.go -------------------------------------------------------------------------------- /aws/resources/vpc_lattice_service_network_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gruntwork-io/cloud-nuke/HEAD/aws/resources/vpc_lattice_service_network_test.go -------------------------------------------------------------------------------- /aws/resources/vpc_lattice_service_network_types.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gruntwork-io/cloud-nuke/HEAD/aws/resources/vpc_lattice_service_network_types.go -------------------------------------------------------------------------------- /aws/resources/vpc_lattice_service_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gruntwork-io/cloud-nuke/HEAD/aws/resources/vpc_lattice_service_test.go -------------------------------------------------------------------------------- /aws/resources/vpc_lattice_service_type.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gruntwork-io/cloud-nuke/HEAD/aws/resources/vpc_lattice_service_type.go -------------------------------------------------------------------------------- /aws/resources/vpc_lattice_target_group.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gruntwork-io/cloud-nuke/HEAD/aws/resources/vpc_lattice_target_group.go -------------------------------------------------------------------------------- /aws/resources/vpc_lattice_target_group_test.go: -------------------------------------------------------------------------------- 1 | package resources_test 2 | -------------------------------------------------------------------------------- /aws/resources/vpc_lattice_target_group_types.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gruntwork-io/cloud-nuke/HEAD/aws/resources/vpc_lattice_target_group_types.go -------------------------------------------------------------------------------- /commands/aws_commands.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gruntwork-io/cloud-nuke/HEAD/commands/aws_commands.go -------------------------------------------------------------------------------- /commands/cli.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gruntwork-io/cloud-nuke/HEAD/commands/cli.go -------------------------------------------------------------------------------- /commands/cli_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gruntwork-io/cloud-nuke/HEAD/commands/cli_test.go -------------------------------------------------------------------------------- /commands/errors.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gruntwork-io/cloud-nuke/HEAD/commands/errors.go -------------------------------------------------------------------------------- /commands/flags.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gruntwork-io/cloud-nuke/HEAD/commands/flags.go -------------------------------------------------------------------------------- /commands/gcp_commands.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gruntwork-io/cloud-nuke/HEAD/commands/gcp_commands.go -------------------------------------------------------------------------------- /commands/helpers.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gruntwork-io/cloud-nuke/HEAD/commands/helpers.go -------------------------------------------------------------------------------- /config/config.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gruntwork-io/cloud-nuke/HEAD/config/config.go -------------------------------------------------------------------------------- /config/config_tag_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gruntwork-io/cloud-nuke/HEAD/config/config_tag_test.go -------------------------------------------------------------------------------- /config/config_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gruntwork-io/cloud-nuke/HEAD/config/config_test.go -------------------------------------------------------------------------------- /config/examples/complete.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gruntwork-io/cloud-nuke/HEAD/config/examples/complete.yaml -------------------------------------------------------------------------------- /config/examples/simple.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gruntwork-io/cloud-nuke/HEAD/config/examples/simple.yaml -------------------------------------------------------------------------------- /config/mocks/empty.yaml: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /config/mocks/garbage.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gruntwork-io/cloud-nuke/HEAD/config/mocks/garbage.yaml -------------------------------------------------------------------------------- /config/mocks/malformed.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gruntwork-io/cloud-nuke/HEAD/config/mocks/malformed.yaml -------------------------------------------------------------------------------- /docs/STATIC_ANALYSIS.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gruntwork-io/cloud-nuke/HEAD/docs/STATIC_ANALYSIS.md -------------------------------------------------------------------------------- /externalcreds/creds.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gruntwork-io/cloud-nuke/HEAD/externalcreds/creds.go -------------------------------------------------------------------------------- /gcp/gcp.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gruntwork-io/cloud-nuke/HEAD/gcp/gcp.go -------------------------------------------------------------------------------- /gcp/resource.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gruntwork-io/cloud-nuke/HEAD/gcp/resource.go -------------------------------------------------------------------------------- /gcp/resources/base_resource.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gruntwork-io/cloud-nuke/HEAD/gcp/resources/base_resource.go -------------------------------------------------------------------------------- /gcp/resources/gcs_bucket.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gruntwork-io/cloud-nuke/HEAD/gcp/resources/gcs_bucket.go -------------------------------------------------------------------------------- /gcp/resources/gcs_bucket_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gruntwork-io/cloud-nuke/HEAD/gcp/resources/gcs_bucket_test.go -------------------------------------------------------------------------------- /gcp/resources/gcs_bucket_types.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gruntwork-io/cloud-nuke/HEAD/gcp/resources/gcs_bucket_types.go -------------------------------------------------------------------------------- /go.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gruntwork-io/cloud-nuke/HEAD/go.mod -------------------------------------------------------------------------------- /go.sum: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gruntwork-io/cloud-nuke/HEAD/go.sum -------------------------------------------------------------------------------- /logging/logger.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gruntwork-io/cloud-nuke/HEAD/logging/logger.go -------------------------------------------------------------------------------- /main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gruntwork-io/cloud-nuke/HEAD/main.go -------------------------------------------------------------------------------- /report/report.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gruntwork-io/cloud-nuke/HEAD/report/report.go -------------------------------------------------------------------------------- /report/report_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gruntwork-io/cloud-nuke/HEAD/report/report_test.go -------------------------------------------------------------------------------- /telemetry/telemetry.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gruntwork-io/cloud-nuke/HEAD/telemetry/telemetry.go -------------------------------------------------------------------------------- /ui/json_formatter.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gruntwork-io/cloud-nuke/HEAD/ui/json_formatter.go -------------------------------------------------------------------------------- /ui/json_formatter_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gruntwork-io/cloud-nuke/HEAD/ui/json_formatter_test.go -------------------------------------------------------------------------------- /ui/json_types.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gruntwork-io/cloud-nuke/HEAD/ui/json_types.go -------------------------------------------------------------------------------- /ui/styles.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gruntwork-io/cloud-nuke/HEAD/ui/styles.go -------------------------------------------------------------------------------- /ui/ui.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gruntwork-io/cloud-nuke/HEAD/ui/ui.go -------------------------------------------------------------------------------- /ui/ui_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gruntwork-io/cloud-nuke/HEAD/ui/ui_test.go -------------------------------------------------------------------------------- /util/context.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gruntwork-io/cloud-nuke/HEAD/util/context.go -------------------------------------------------------------------------------- /util/error.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gruntwork-io/cloud-nuke/HEAD/util/error.go -------------------------------------------------------------------------------- /util/error_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gruntwork-io/cloud-nuke/HEAD/util/error_test.go -------------------------------------------------------------------------------- /util/get_current_account_id.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gruntwork-io/cloud-nuke/HEAD/util/get_current_account_id.go -------------------------------------------------------------------------------- /util/string_utils.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gruntwork-io/cloud-nuke/HEAD/util/string_utils.go -------------------------------------------------------------------------------- /util/tag.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gruntwork-io/cloud-nuke/HEAD/util/tag.go -------------------------------------------------------------------------------- /util/time.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gruntwork-io/cloud-nuke/HEAD/util/time.go -------------------------------------------------------------------------------- /util/time_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gruntwork-io/cloud-nuke/HEAD/util/time_test.go -------------------------------------------------------------------------------- /util/unique_id.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gruntwork-io/cloud-nuke/HEAD/util/unique_id.go --------------------------------------------------------------------------------