pangea-aws 0.1.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +7 -0
- data/.gitignore +6 -0
- data/Gemfile +3 -0
- data/Gemfile.lock +88 -0
- data/LICENSE +201 -0
- data/Rakefile +8 -0
- data/flake.lock +835 -0
- data/flake.nix +60 -0
- data/gemset.nix +272 -0
- data/lib/pangea/resources/aws.rb +491 -0
- data/lib/pangea/resources/aws_acm_certificate/resource.rb +117 -0
- data/lib/pangea/resources/aws_acm_certificate/types.rb +153 -0
- data/lib/pangea/resources/aws_acm_certificate_validation/resource.rb +72 -0
- data/lib/pangea/resources/aws_acm_certificate_validation/types.rb +147 -0
- data/lib/pangea/resources/aws_acmpca_certificate_authority/resource.rb +126 -0
- data/lib/pangea/resources/aws_acmpca_certificate_authority/types/attributes.rb +85 -0
- data/lib/pangea/resources/aws_acmpca_certificate_authority/types/helpers.rb +24 -0
- data/lib/pangea/resources/aws_acmpca_certificate_authority/types/templates.rb +140 -0
- data/lib/pangea/resources/aws_acmpca_certificate_authority/types/validators.rb +24 -0
- data/lib/pangea/resources/aws_acmpca_certificate_authority/types.rb +20 -0
- data/lib/pangea/resources/aws_alb_target_group_attachment/resource.rb +63 -0
- data/lib/pangea/resources/aws_alb_target_group_attachment/types.rb +44 -0
- data/lib/pangea/resources/aws_ami/resource.rb +139 -0
- data/lib/pangea/resources/aws_ami/types.rb +194 -0
- data/lib/pangea/resources/aws_api_gateway_api_key/resource.rb +83 -0
- data/lib/pangea/resources/aws_api_gateway_api_key/types/configs.rb +125 -0
- data/lib/pangea/resources/aws_api_gateway_api_key/types.rb +145 -0
- data/lib/pangea/resources/aws_api_gateway_deployment/resource.rb +182 -0
- data/lib/pangea/resources/aws_api_gateway_deployment/types.rb +198 -0
- data/lib/pangea/resources/aws_api_gateway_integration/resource.rb +161 -0
- data/lib/pangea/resources/aws_api_gateway_integration/types/factory_methods.rb +99 -0
- data/lib/pangea/resources/aws_api_gateway_integration/types/predicates.rb +57 -0
- data/lib/pangea/resources/aws_api_gateway_integration/types/uri_helpers.rb +58 -0
- data/lib/pangea/resources/aws_api_gateway_integration/types/validators.rb +98 -0
- data/lib/pangea/resources/aws_api_gateway_integration/types.rb +98 -0
- data/lib/pangea/resources/aws_api_gateway_method/resource.rb +79 -0
- data/lib/pangea/resources/aws_api_gateway_method/types.rb +184 -0
- data/lib/pangea/resources/aws_api_gateway_resource/resource.rb +68 -0
- data/lib/pangea/resources/aws_api_gateway_resource/types.rb +141 -0
- data/lib/pangea/resources/aws_api_gateway_rest_api/resource.rb +92 -0
- data/lib/pangea/resources/aws_api_gateway_rest_api/types.rb +160 -0
- data/lib/pangea/resources/aws_api_gateway_stage/resource/helpers/basic.rb +67 -0
- data/lib/pangea/resources/aws_api_gateway_stage/resource/helpers/configuration.rb +132 -0
- data/lib/pangea/resources/aws_api_gateway_stage/resource/helpers/method_settings.rb +88 -0
- data/lib/pangea/resources/aws_api_gateway_stage/resource/helpers.rb +47 -0
- data/lib/pangea/resources/aws_api_gateway_stage/resource/main.rb +124 -0
- data/lib/pangea/resources/aws_api_gateway_stage/resource.rb +47 -0
- data/lib/pangea/resources/aws_api_gateway_stage/types/helpers.rb +75 -0
- data/lib/pangea/resources/aws_api_gateway_stage/types/validators.rb +133 -0
- data/lib/pangea/resources/aws_api_gateway_stage/types.rb +119 -0
- data/lib/pangea/resources/aws_api_gateway_usage_plan/resource.rb +119 -0
- data/lib/pangea/resources/aws_api_gateway_usage_plan/types/attributes.rb +64 -0
- data/lib/pangea/resources/aws_api_gateway_usage_plan/types/configs.rb +81 -0
- data/lib/pangea/resources/aws_api_gateway_usage_plan/types/helpers.rb +103 -0
- data/lib/pangea/resources/aws_api_gateway_usage_plan/types/settings.rb +53 -0
- data/lib/pangea/resources/aws_api_gateway_usage_plan/types/validation.rb +83 -0
- data/lib/pangea/resources/aws_api_gateway_usage_plan/types.rb +24 -0
- data/lib/pangea/resources/aws_appstream_fleet/resource.rb +118 -0
- data/lib/pangea/resources/aws_appstream_fleet/types/attributes.rb +80 -0
- data/lib/pangea/resources/aws_appstream_fleet/types/cost_estimation.rb +54 -0
- data/lib/pangea/resources/aws_appstream_fleet/types/nested_types.rb +82 -0
- data/lib/pangea/resources/aws_appstream_fleet/types.rb +9 -0
- data/lib/pangea/resources/aws_appstream_image_builder/resource.rb +31 -0
- data/lib/pangea/resources/aws_appstream_stack/resource.rb +31 -0
- data/lib/pangea/resources/aws_appsync_datasource/resource.rb +149 -0
- data/lib/pangea/resources/aws_appsync_datasource/types.rb +173 -0
- data/lib/pangea/resources/aws_appsync_graphql_api/resource.rb +163 -0
- data/lib/pangea/resources/aws_appsync_graphql_api/types.rb +167 -0
- data/lib/pangea/resources/aws_appsync_resolver/resource.rb +115 -0
- data/lib/pangea/resources/aws_appsync_resolver/types.rb +137 -0
- data/lib/pangea/resources/aws_athena_database/resource.rb +103 -0
- data/lib/pangea/resources/aws_athena_database/types.rb +190 -0
- data/lib/pangea/resources/aws_athena_database/types.rbs +38 -0
- data/lib/pangea/resources/aws_athena_named_query/resource.rb +74 -0
- data/lib/pangea/resources/aws_athena_named_query/types/query_analysis.rb +148 -0
- data/lib/pangea/resources/aws_athena_named_query/types/query_templates.rb +88 -0
- data/lib/pangea/resources/aws_athena_named_query/types.rb +80 -0
- data/lib/pangea/resources/aws_athena_named_query/types.rbs +42 -0
- data/lib/pangea/resources/aws_athena_workgroup/resource.rb +138 -0
- data/lib/pangea/resources/aws_athena_workgroup/types/attributes.rb +101 -0
- data/lib/pangea/resources/aws_athena_workgroup/types/class_methods.rb +102 -0
- data/lib/pangea/resources/aws_athena_workgroup/types/instance_methods.rb +104 -0
- data/lib/pangea/resources/aws_athena_workgroup/types/validation.rb +56 -0
- data/lib/pangea/resources/aws_athena_workgroup/types.rb +21 -0
- data/lib/pangea/resources/aws_athena_workgroup/types.rbs +38 -0
- data/lib/pangea/resources/aws_autoscaling_attachment/resource.rb +78 -0
- data/lib/pangea/resources/aws_autoscaling_attachment/types.rb +85 -0
- data/lib/pangea/resources/aws_autoscaling_group/resource.rb +172 -0
- data/lib/pangea/resources/aws_autoscaling_group/types/auto_scaling_tag.rb +42 -0
- data/lib/pangea/resources/aws_autoscaling_group/types/instance_refresh_preferences.rb +39 -0
- data/lib/pangea/resources/aws_autoscaling_group/types/launch_template_specification.rb +57 -0
- data/lib/pangea/resources/aws_autoscaling_group/types.rb +187 -0
- data/lib/pangea/resources/aws_autoscaling_group_tag/resource.rb +63 -0
- data/lib/pangea/resources/aws_autoscaling_group_tag/types.rb +44 -0
- data/lib/pangea/resources/aws_autoscaling_lifecycle_hook/resource.rb +63 -0
- data/lib/pangea/resources/aws_autoscaling_lifecycle_hook/types.rb +44 -0
- data/lib/pangea/resources/aws_autoscaling_lifecycle_hook/types.rbs +42 -0
- data/lib/pangea/resources/aws_autoscaling_notification/resource.rb +63 -0
- data/lib/pangea/resources/aws_autoscaling_notification/types.rb +44 -0
- data/lib/pangea/resources/aws_autoscaling_notification/types.rbs +41 -0
- data/lib/pangea/resources/aws_autoscaling_policy/resource.rb +165 -0
- data/lib/pangea/resources/aws_autoscaling_policy/types/predictive_scaling_configuration.rb +42 -0
- data/lib/pangea/resources/aws_autoscaling_policy/types/step_adjustment.rb +38 -0
- data/lib/pangea/resources/aws_autoscaling_policy/types/target_tracking_configuration.rb +87 -0
- data/lib/pangea/resources/aws_autoscaling_policy/types.rb +180 -0
- data/lib/pangea/resources/aws_autoscaling_policy_step_adjustment/resource.rb +63 -0
- data/lib/pangea/resources/aws_autoscaling_policy_step_adjustment/types.rb +44 -0
- data/lib/pangea/resources/aws_autoscaling_policy_target_tracking_scaling_policy/resource.rb +63 -0
- data/lib/pangea/resources/aws_autoscaling_policy_target_tracking_scaling_policy/types.rb +44 -0
- data/lib/pangea/resources/aws_autoscaling_schedule/resource.rb +63 -0
- data/lib/pangea/resources/aws_autoscaling_schedule/types.rb +44 -0
- data/lib/pangea/resources/aws_autoscaling_schedule/types.rbs +45 -0
- data/lib/pangea/resources/aws_autoscaling_tag/resource.rb +116 -0
- data/lib/pangea/resources/aws_autoscaling_tag/types/tag_queries.rb +121 -0
- data/lib/pangea/resources/aws_autoscaling_tag/types/tag_specification.rb +44 -0
- data/lib/pangea/resources/aws_autoscaling_tag/types/tag_validator.rb +103 -0
- data/lib/pangea/resources/aws_autoscaling_tag/types.rb +60 -0
- data/lib/pangea/resources/aws_autoscaling_tag/types.rbs +60 -0
- data/lib/pangea/resources/aws_autoscaling_traffic_source_attachment/resource.rb +63 -0
- data/lib/pangea/resources/aws_autoscaling_traffic_source_attachment/types.rb +44 -0
- data/lib/pangea/resources/aws_autoscaling_warm_pool/resource.rb +63 -0
- data/lib/pangea/resources/aws_autoscaling_warm_pool/types.rb +44 -0
- data/lib/pangea/resources/aws_batch_compute_environment/resource.rb +102 -0
- data/lib/pangea/resources/aws_batch_compute_environment/types/attributes.rb +88 -0
- data/lib/pangea/resources/aws_batch_compute_environment/types/helpers.rb +54 -0
- data/lib/pangea/resources/aws_batch_compute_environment/types/templates.rb +153 -0
- data/lib/pangea/resources/aws_batch_compute_environment/types/validators.rb +144 -0
- data/lib/pangea/resources/aws_batch_compute_environment/types.rb +23 -0
- data/lib/pangea/resources/aws_batch_job_definition/resource.rb +68 -0
- data/lib/pangea/resources/aws_batch_job_definition/synthesis/synthesizer.rb +159 -0
- data/lib/pangea/resources/aws_batch_job_definition/types/computed.rb +64 -0
- data/lib/pangea/resources/aws_batch_job_definition/types/configurations.rb +75 -0
- data/lib/pangea/resources/aws_batch_job_definition/types/templates.rb +156 -0
- data/lib/pangea/resources/aws_batch_job_definition/types/validation.rb +154 -0
- data/lib/pangea/resources/aws_batch_job_definition/types.rb +86 -0
- data/lib/pangea/resources/aws_batch_job_queue/resource.rb +69 -0
- data/lib/pangea/resources/aws_batch_job_queue/types/attributes.rb +76 -0
- data/lib/pangea/resources/aws_batch_job_queue/types/templates.rb +133 -0
- data/lib/pangea/resources/aws_batch_job_queue/types.rb +18 -0
- data/lib/pangea/resources/aws_billing_service_account/resource.rb +53 -0
- data/lib/pangea/resources/aws_billing_service_account/types.rb +42 -0
- data/lib/pangea/resources/aws_blockchain_query/resource.rb +119 -0
- data/lib/pangea/resources/aws_blockchain_query/types/attributes.rb +69 -0
- data/lib/pangea/resources/aws_blockchain_query/types/helpers.rb +24 -0
- data/lib/pangea/resources/aws_blockchain_query/types/validators.rb +24 -0
- data/lib/pangea/resources/aws_blockchain_query/types.rb +19 -0
- data/lib/pangea/resources/aws_blockchain_token_balance/resource.rb +91 -0
- data/lib/pangea/resources/aws_blockchain_token_balance/types/attributes.rb +67 -0
- data/lib/pangea/resources/aws_blockchain_token_balance/types/network_helpers.rb +83 -0
- data/lib/pangea/resources/aws_blockchain_token_balance/types/query_helpers.rb +94 -0
- data/lib/pangea/resources/aws_blockchain_token_balance/types/token_helpers.rb +89 -0
- data/lib/pangea/resources/aws_blockchain_token_balance/types/validation.rb +86 -0
- data/lib/pangea/resources/aws_blockchain_token_balance/types.rb +23 -0
- data/lib/pangea/resources/aws_braket_device/resource.rb +115 -0
- data/lib/pangea/resources/aws_braket_device/types/helpers.rb +113 -0
- data/lib/pangea/resources/aws_braket_device/types/validations.rb +80 -0
- data/lib/pangea/resources/aws_braket_device/types.rb +106 -0
- data/lib/pangea/resources/aws_braket_device_capabilities/resource.rb +83 -0
- data/lib/pangea/resources/aws_braket_device_capabilities/types/capability_support.rb +60 -0
- data/lib/pangea/resources/aws_braket_device_capabilities/types/device_classification.rb +66 -0
- data/lib/pangea/resources/aws_braket_device_capabilities/types/device_specs.rb +93 -0
- data/lib/pangea/resources/aws_braket_device_capabilities/types/execution_params.rb +60 -0
- data/lib/pangea/resources/aws_braket_device_capabilities/types.rb +76 -0
- data/lib/pangea/resources/aws_braket_job/resource.rb +159 -0
- data/lib/pangea/resources/aws_braket_job/types/attributes.rb +81 -0
- data/lib/pangea/resources/aws_braket_job/types/constants.rb +41 -0
- data/lib/pangea/resources/aws_braket_job/types/instance_methods.rb +71 -0
- data/lib/pangea/resources/aws_braket_job/types/validation.rb +69 -0
- data/lib/pangea/resources/aws_braket_job/types.rb +10 -0
- data/lib/pangea/resources/aws_braket_job_queue/resource.rb +108 -0
- data/lib/pangea/resources/aws_braket_job_queue/types/cost_estimation.rb +64 -0
- data/lib/pangea/resources/aws_braket_job_queue/types/helpers.rb +100 -0
- data/lib/pangea/resources/aws_braket_job_queue/types/validators.rb +72 -0
- data/lib/pangea/resources/aws_braket_job_queue/types.rb +84 -0
- data/lib/pangea/resources/aws_braket_local_simulator/resource.rb +146 -0
- data/lib/pangea/resources/aws_braket_local_simulator/types/helpers.rb +143 -0
- data/lib/pangea/resources/aws_braket_local_simulator/types/validators.rb +91 -0
- data/lib/pangea/resources/aws_braket_local_simulator/types.rb +96 -0
- data/lib/pangea/resources/aws_braket_quantum_task/resource.rb +87 -0
- data/lib/pangea/resources/aws_braket_quantum_task/types.rb +167 -0
- data/lib/pangea/resources/aws_budgets_budget/resource.rb +197 -0
- data/lib/pangea/resources/aws_budgets_budget/types/attributes.rb +68 -0
- data/lib/pangea/resources/aws_budgets_budget/types/enums.rb +54 -0
- data/lib/pangea/resources/aws_budgets_budget/types/helpers.rb +122 -0
- data/lib/pangea/resources/aws_budgets_budget/types/schemas.rb +175 -0
- data/lib/pangea/resources/aws_budgets_budget/types.rb +23 -0
- data/lib/pangea/resources/aws_budgets_budget_action/resource.rb +198 -0
- data/lib/pangea/resources/aws_budgets_budget_action/types/attributes.rb +104 -0
- data/lib/pangea/resources/aws_budgets_budget_action/types/definitions.rb +53 -0
- data/lib/pangea/resources/aws_budgets_budget_action/types.rb +19 -0
- data/lib/pangea/resources/aws_ce_anomaly_detector/resource.rb +62 -0
- data/lib/pangea/resources/aws_ce_anomaly_detector/types.rb +69 -0
- data/lib/pangea/resources/aws_ce_anomaly_subscription/resource.rb +59 -0
- data/lib/pangea/resources/aws_ce_anomaly_subscription/types.rb +58 -0
- data/lib/pangea/resources/aws_ce_cost_category/expression_builder.rb +84 -0
- data/lib/pangea/resources/aws_ce_cost_category/resource.rb +149 -0
- data/lib/pangea/resources/aws_ce_cost_category/types/attributes.rb +152 -0
- data/lib/pangea/resources/aws_ce_cost_category/types/expressions.rb +157 -0
- data/lib/pangea/resources/aws_ce_cost_category/types.rb +19 -0
- data/lib/pangea/resources/aws_cloudformation_stack/resource.rb +136 -0
- data/lib/pangea/resources/aws_cloudformation_stack/types/configs.rb +91 -0
- data/lib/pangea/resources/aws_cloudformation_stack/types/instance_methods.rb +79 -0
- data/lib/pangea/resources/aws_cloudformation_stack/types/validation.rb +88 -0
- data/lib/pangea/resources/aws_cloudformation_stack/types.rb +84 -0
- data/lib/pangea/resources/aws_cloudformation_stack/types.rbs +46 -0
- data/lib/pangea/resources/aws_cloudformation_stack_set/resource.rb +149 -0
- data/lib/pangea/resources/aws_cloudformation_stack_set/types/configs.rb +120 -0
- data/lib/pangea/resources/aws_cloudformation_stack_set/types/helpers.rb +89 -0
- data/lib/pangea/resources/aws_cloudformation_stack_set/types/validators.rb +120 -0
- data/lib/pangea/resources/aws_cloudformation_stack_set/types.rb +95 -0
- data/lib/pangea/resources/aws_cloudformation_stack_set/types.rbs +48 -0
- data/lib/pangea/resources/aws_cloudfront_cache_policy/resource.rb +81 -0
- data/lib/pangea/resources/aws_cloudfront_cache_policy/types.rb +57 -0
- data/lib/pangea/resources/aws_cloudfront_distribution/builders/cache_behavior_builder.rb +88 -0
- data/lib/pangea/resources/aws_cloudfront_distribution/builders/origin_builder.rb +82 -0
- data/lib/pangea/resources/aws_cloudfront_distribution/builders/reference_builder.rb +62 -0
- data/lib/pangea/resources/aws_cloudfront_distribution/builders/settings_builder.rb +84 -0
- data/lib/pangea/resources/aws_cloudfront_distribution/resource.rb +208 -0
- data/lib/pangea/resources/aws_cloudfront_distribution/types/attributes.rb +47 -0
- data/lib/pangea/resources/aws_cloudfront_distribution/types/instance_methods.rb +59 -0
- data/lib/pangea/resources/aws_cloudfront_distribution/types/validation.rb +55 -0
- data/lib/pangea/resources/aws_cloudfront_distribution/types.rb +19 -0
- data/lib/pangea/resources/aws_cloudfront_key_group/resource.rb +68 -0
- data/lib/pangea/resources/aws_cloudfront_key_group/types.rb +189 -0
- data/lib/pangea/resources/aws_cloudfront_origin_access_control/resource.rb +65 -0
- data/lib/pangea/resources/aws_cloudfront_origin_access_control/types.rb +98 -0
- data/lib/pangea/resources/aws_cloudfront_origin_request_policy/resource.rb +73 -0
- data/lib/pangea/resources/aws_cloudfront_origin_request_policy/types.rb +48 -0
- data/lib/pangea/resources/aws_cloudfront_public_key/resource.rb +66 -0
- data/lib/pangea/resources/aws_cloudfront_public_key/types.rb +175 -0
- data/lib/pangea/resources/aws_cloudfront_response_headers_policy/resource.rb +172 -0
- data/lib/pangea/resources/aws_cloudfront_response_headers_policy/types/attributes.rb +153 -0
- data/lib/pangea/resources/aws_cloudfront_response_headers_policy/types/configs.rb +81 -0
- data/lib/pangea/resources/aws_cloudfront_response_headers_policy/types.rb +18 -0
- data/lib/pangea/resources/aws_cloudtrail/resource.rb +130 -0
- data/lib/pangea/resources/aws_cloudtrail/types/attributes.rb +92 -0
- data/lib/pangea/resources/aws_cloudtrail/types/configs.rb +87 -0
- data/lib/pangea/resources/aws_cloudtrail/types/selectors.rb +42 -0
- data/lib/pangea/resources/aws_cloudtrail/types.rb +21 -0
- data/lib/pangea/resources/aws_cloudtrail_event_data_store/resource.rb +61 -0
- data/lib/pangea/resources/aws_cloudtrail_event_data_store/types.rb +72 -0
- data/lib/pangea/resources/aws_cloudwatch_anomaly_detector/resource.rb +100 -0
- data/lib/pangea/resources/aws_cloudwatch_composite_alarm/resource.rb +130 -0
- data/lib/pangea/resources/aws_cloudwatch_composite_alarm/types.rb +133 -0
- data/lib/pangea/resources/aws_cloudwatch_dashboard/resource.rb +153 -0
- data/lib/pangea/resources/aws_cloudwatch_dashboard/types/cloudwatch_dashboard_attributes.rb +158 -0
- data/lib/pangea/resources/aws_cloudwatch_dashboard/types/dashboard_metric.rb +57 -0
- data/lib/pangea/resources/aws_cloudwatch_dashboard/types/dashboard_widget.rb +81 -0
- data/lib/pangea/resources/aws_cloudwatch_dashboard/types/dashboard_widget_properties.rb +75 -0
- data/lib/pangea/resources/aws_cloudwatch_dashboard/types.rb +25 -0
- data/lib/pangea/resources/aws_cloudwatch_event_rule/resource.rb +140 -0
- data/lib/pangea/resources/aws_cloudwatch_event_rule/types.rb +180 -0
- data/lib/pangea/resources/aws_cloudwatch_event_target/resource.rb +138 -0
- data/lib/pangea/resources/aws_cloudwatch_event_target/target_builders.rb +97 -0
- data/lib/pangea/resources/aws_cloudwatch_event_target/types/dead_letter_config.rb +38 -0
- data/lib/pangea/resources/aws_cloudwatch_event_target/types/input_transformer.rb +42 -0
- data/lib/pangea/resources/aws_cloudwatch_event_target/types/retry_policy.rb +42 -0
- data/lib/pangea/resources/aws_cloudwatch_event_target/types/target_service_detection.rb +80 -0
- data/lib/pangea/resources/aws_cloudwatch_event_target/types/validators.rb +66 -0
- data/lib/pangea/resources/aws_cloudwatch_event_target/types.rb +147 -0
- data/lib/pangea/resources/aws_cloudwatch_insight_rule/resource.rb +98 -0
- data/lib/pangea/resources/aws_cloudwatch_log_data_protection_policy/resource.rb +96 -0
- data/lib/pangea/resources/aws_cloudwatch_log_destination/resource.rb +100 -0
- data/lib/pangea/resources/aws_cloudwatch_log_destination/types.rb +102 -0
- data/lib/pangea/resources/aws_cloudwatch_log_destination_policy/resource.rb +129 -0
- data/lib/pangea/resources/aws_cloudwatch_log_destination_policy/types.rb +129 -0
- data/lib/pangea/resources/aws_cloudwatch_log_group/resource.rb +117 -0
- data/lib/pangea/resources/aws_cloudwatch_log_group/types.rb +137 -0
- data/lib/pangea/resources/aws_cloudwatch_log_metric_filter/resource.rb +127 -0
- data/lib/pangea/resources/aws_cloudwatch_log_metric_filter/types.rb +138 -0
- data/lib/pangea/resources/aws_cloudwatch_log_resource_policy/resource.rb +79 -0
- data/lib/pangea/resources/aws_cloudwatch_log_stream/resource.rb +87 -0
- data/lib/pangea/resources/aws_cloudwatch_log_stream/types.rb +129 -0
- data/lib/pangea/resources/aws_cloudwatch_log_subscription_filter/resource.rb +102 -0
- data/lib/pangea/resources/aws_cloudwatch_log_subscription_filter/types.rb +141 -0
- data/lib/pangea/resources/aws_cloudwatch_metric_alarm/resource.rb +185 -0
- data/lib/pangea/resources/aws_cloudwatch_metric_alarm/types/instance_methods.rb +94 -0
- data/lib/pangea/resources/aws_cloudwatch_metric_alarm/types/metric_query.rb +71 -0
- data/lib/pangea/resources/aws_cloudwatch_metric_alarm/types/validation.rb +85 -0
- data/lib/pangea/resources/aws_cloudwatch_metric_alarm/types.rb +104 -0
- data/lib/pangea/resources/aws_cloudwatch_query_definition/resource.rb +90 -0
- data/lib/pangea/resources/aws_codeartifact_domain/resource.rb +123 -0
- data/lib/pangea/resources/aws_codeartifact_domain/types.rb +130 -0
- data/lib/pangea/resources/aws_codeartifact_repository/resource.rb +173 -0
- data/lib/pangea/resources/aws_codeartifact_repository/types.rb +195 -0
- data/lib/pangea/resources/aws_codebuild_project/block_builders.rb +163 -0
- data/lib/pangea/resources/aws_codebuild_project/resource.rb +118 -0
- data/lib/pangea/resources/aws_codebuild_project/types/instance_methods.rb +74 -0
- data/lib/pangea/resources/aws_codebuild_project/types/schemas.rb +155 -0
- data/lib/pangea/resources/aws_codebuild_project/types/validation.rb +88 -0
- data/lib/pangea/resources/aws_codebuild_project/types.rb +109 -0
- data/lib/pangea/resources/aws_codebuild_project/types.rbs +140 -0
- data/lib/pangea/resources/aws_codecommit_repository/resource.rb +97 -0
- data/lib/pangea/resources/aws_codecommit_repository/types.rb +120 -0
- data/lib/pangea/resources/aws_codecommit_repository/types.rbs +55 -0
- data/lib/pangea/resources/aws_codedeploy_application/resource.rb +78 -0
- data/lib/pangea/resources/aws_codedeploy_application/types.rb +96 -0
- data/lib/pangea/resources/aws_codedeploy_deployment_config/resource.rb +94 -0
- data/lib/pangea/resources/aws_codedeploy_deployment_config/types.rb +141 -0
- data/lib/pangea/resources/aws_codedeploy_deployment_group/block_builders.rb +104 -0
- data/lib/pangea/resources/aws_codedeploy_deployment_group/resource.rb +156 -0
- data/lib/pangea/resources/aws_codedeploy_deployment_group/types/deployment.rb +65 -0
- data/lib/pangea/resources/aws_codedeploy_deployment_group/types/helpers.rb +85 -0
- data/lib/pangea/resources/aws_codedeploy_deployment_group/types/infrastructure.rb +76 -0
- data/lib/pangea/resources/aws_codedeploy_deployment_group/types/tag_filters.rb +43 -0
- data/lib/pangea/resources/aws_codedeploy_deployment_group/types.rb +96 -0
- data/lib/pangea/resources/aws_codepipeline/resource.rb +123 -0
- data/lib/pangea/resources/aws_codepipeline/types/attributes.rb +130 -0
- data/lib/pangea/resources/aws_codepipeline/types/instance_methods.rb +85 -0
- data/lib/pangea/resources/aws_codepipeline/types/validation.rb +64 -0
- data/lib/pangea/resources/aws_codepipeline/types.rb +23 -0
- data/lib/pangea/resources/aws_codepipeline_webhook/resource.rb +91 -0
- data/lib/pangea/resources/aws_codepipeline_webhook/types.rb +132 -0
- data/lib/pangea/resources/aws_codestar_connection/resource.rb +133 -0
- data/lib/pangea/resources/aws_codestar_connection/types.rb +188 -0
- data/lib/pangea/resources/aws_cognito_identity_pool/resource.rb +107 -0
- data/lib/pangea/resources/aws_cognito_identity_pool/types/attributes.rb +106 -0
- data/lib/pangea/resources/aws_cognito_identity_pool/types/providers.rb +38 -0
- data/lib/pangea/resources/aws_cognito_identity_pool/types/templates.rb +75 -0
- data/lib/pangea/resources/aws_cognito_identity_pool/types.rb +8 -0
- data/lib/pangea/resources/aws_cognito_identity_provider/resource.rb +88 -0
- data/lib/pangea/resources/aws_cognito_identity_provider/types/attributes.rb +62 -0
- data/lib/pangea/resources/aws_cognito_identity_provider/types/templates.rb +70 -0
- data/lib/pangea/resources/aws_cognito_identity_provider/types/validation.rb +66 -0
- data/lib/pangea/resources/aws_cognito_identity_provider/types.rb +8 -0
- data/lib/pangea/resources/aws_cognito_user/resource.rb +78 -0
- data/lib/pangea/resources/aws_cognito_user/types.rb +153 -0
- data/lib/pangea/resources/aws_cognito_user_group/resource.rb +61 -0
- data/lib/pangea/resources/aws_cognito_user_group/types.rb +132 -0
- data/lib/pangea/resources/aws_cognito_user_pool/resource/dsl_builder/authentication_config.rb +63 -0
- data/lib/pangea/resources/aws_cognito_user_pool/resource/dsl_builder/messaging_config.rb +73 -0
- data/lib/pangea/resources/aws_cognito_user_pool/resource/dsl_builder/mfa_config.rb +57 -0
- data/lib/pangea/resources/aws_cognito_user_pool/resource/dsl_builder/schema_and_settings.rb +146 -0
- data/lib/pangea/resources/aws_cognito_user_pool/resource/dsl_builder.rb +42 -0
- data/lib/pangea/resources/aws_cognito_user_pool/resource.rb +247 -0
- data/lib/pangea/resources/aws_cognito_user_pool/types/attributes.rb +88 -0
- data/lib/pangea/resources/aws_cognito_user_pool/types/nested_types.rb +112 -0
- data/lib/pangea/resources/aws_cognito_user_pool/types/templates.rb +58 -0
- data/lib/pangea/resources/aws_cognito_user_pool/types.rb +20 -0
- data/lib/pangea/resources/aws_cognito_user_pool_client/resource.rb +136 -0
- data/lib/pangea/resources/aws_cognito_user_pool_client/types/attributes.rb +108 -0
- data/lib/pangea/resources/aws_cognito_user_pool_client/types/nested_types.rb +27 -0
- data/lib/pangea/resources/aws_cognito_user_pool_client/types/templates.rb +86 -0
- data/lib/pangea/resources/aws_cognito_user_pool_client/types.rb +20 -0
- data/lib/pangea/resources/aws_cognito_user_pool_domain/resource.rb +68 -0
- data/lib/pangea/resources/aws_cognito_user_pool_domain/types/attributes.rb +125 -0
- data/lib/pangea/resources/aws_cognito_user_pool_domain/types/templates.rb +85 -0
- data/lib/pangea/resources/aws_cognito_user_pool_domain/types/validation.rb +73 -0
- data/lib/pangea/resources/aws_cognito_user_pool_domain/types.rb +19 -0
- data/lib/pangea/resources/aws_config_aggregate_authorization/resource.rb +64 -0
- data/lib/pangea/resources/aws_config_aggregate_authorization/types.rb +53 -0
- data/lib/pangea/resources/aws_config_config_rule/resource.rb +187 -0
- data/lib/pangea/resources/aws_config_config_rule/types/cost_estimator.rb +77 -0
- data/lib/pangea/resources/aws_config_config_rule/types/validators.rb +94 -0
- data/lib/pangea/resources/aws_config_config_rule/types.rb +103 -0
- data/lib/pangea/resources/aws_config_configuration_aggregator_organization/resource.rb +65 -0
- data/lib/pangea/resources/aws_config_configuration_aggregator_organization/types.rb +56 -0
- data/lib/pangea/resources/aws_config_configuration_recorder/resource.rb +136 -0
- data/lib/pangea/resources/aws_config_configuration_recorder/types.rb +155 -0
- data/lib/pangea/resources/aws_config_delivery_channel/resource.rb +138 -0
- data/lib/pangea/resources/aws_config_delivery_channel/types.rb +194 -0
- data/lib/pangea/resources/aws_config_organization_conformance_pack/resource.rb +79 -0
- data/lib/pangea/resources/aws_config_organization_conformance_pack/types.rb +77 -0
- data/lib/pangea/resources/aws_config_organization_custom_rule/resource.rb +75 -0
- data/lib/pangea/resources/aws_config_organization_custom_rule/types.rb +68 -0
- data/lib/pangea/resources/aws_config_organization_managed_rule/resource.rb +75 -0
- data/lib/pangea/resources/aws_config_organization_managed_rule/types.rb +66 -0
- data/lib/pangea/resources/aws_config_remediation_configuration/resource.rb +76 -0
- data/lib/pangea/resources/aws_config_remediation_configuration/types.rb +119 -0
- data/lib/pangea/resources/aws_config_retention_configuration/resource.rb +51 -0
- data/lib/pangea/resources/aws_config_retention_configuration/types.rb +47 -0
- data/lib/pangea/resources/aws_config_stored_query/resource.rb +65 -0
- data/lib/pangea/resources/aws_config_stored_query/types.rb +56 -0
- data/lib/pangea/resources/aws_cur_report_definition/resource.rb +60 -0
- data/lib/pangea/resources/aws_cur_report_definition/types.rb +77 -0
- data/lib/pangea/resources/aws_customer_gateway/resource.rb +89 -0
- data/lib/pangea/resources/aws_customer_gateway/types.rb +115 -0
- data/lib/pangea/resources/aws_db_cluster_snapshot/resource.rb +92 -0
- data/lib/pangea/resources/aws_db_cluster_snapshot/types/configs.rb +117 -0
- data/lib/pangea/resources/aws_db_cluster_snapshot/types.rb +149 -0
- data/lib/pangea/resources/aws_db_instance/resource.rb +123 -0
- data/lib/pangea/resources/aws_db_instance/types/backup_attributes.rb +38 -0
- data/lib/pangea/resources/aws_db_instance/types/core_attributes.rb +58 -0
- data/lib/pangea/resources/aws_db_instance/types/engine_configs.rb +68 -0
- data/lib/pangea/resources/aws_db_instance/types/helpers.rb +92 -0
- data/lib/pangea/resources/aws_db_instance/types/monitoring_attributes.rb +38 -0
- data/lib/pangea/resources/aws_db_instance/types/network_attributes.rb +44 -0
- data/lib/pangea/resources/aws_db_instance/types/options_attributes.rb +44 -0
- data/lib/pangea/resources/aws_db_instance/types/storage_attributes.rb +44 -0
- data/lib/pangea/resources/aws_db_instance/types/validations.rb +85 -0
- data/lib/pangea/resources/aws_db_instance/types.rb +70 -0
- data/lib/pangea/resources/aws_db_parameter_group/resource.rb +91 -0
- data/lib/pangea/resources/aws_db_parameter_group/types/db_parameter.rb +59 -0
- data/lib/pangea/resources/aws_db_parameter_group/types/db_parameter_configs.rb +82 -0
- data/lib/pangea/resources/aws_db_parameter_group/types/parameter_validators.rb +73 -0
- data/lib/pangea/resources/aws_db_parameter_group/types.rb +162 -0
- data/lib/pangea/resources/aws_db_snapshot/resource.rb +89 -0
- data/lib/pangea/resources/aws_db_snapshot/types.rb +173 -0
- data/lib/pangea/resources/aws_db_subnet_group/resource.rb +74 -0
- data/lib/pangea/resources/aws_db_subnet_group/types.rb +103 -0
- data/lib/pangea/resources/aws_default_network_acl/resource.rb +63 -0
- data/lib/pangea/resources/aws_default_network_acl/types.rb +44 -0
- data/lib/pangea/resources/aws_default_route_table/resource.rb +63 -0
- data/lib/pangea/resources/aws_default_route_table/types.rb +44 -0
- data/lib/pangea/resources/aws_default_security_group/resource.rb +63 -0
- data/lib/pangea/resources/aws_default_security_group/types.rb +44 -0
- data/lib/pangea/resources/aws_default_vpc_dhcp_options/resource.rb +63 -0
- data/lib/pangea/resources/aws_default_vpc_dhcp_options/types.rb +44 -0
- data/lib/pangea/resources/aws_device_farm_project/resource.rb +75 -0
- data/lib/pangea/resources/aws_device_farm_project/types.rb +52 -0
- data/lib/pangea/resources/aws_directory_service_directory/resource.rb +31 -0
- data/lib/pangea/resources/aws_docdb_certificate/resource.rb +70 -0
- data/lib/pangea/resources/aws_docdb_certificate/types.rb +46 -0
- data/lib/pangea/resources/aws_docdb_cluster/resource.rb +92 -0
- data/lib/pangea/resources/aws_docdb_cluster/types.rb +68 -0
- data/lib/pangea/resources/aws_docdb_cluster_endpoint/resource.rb +70 -0
- data/lib/pangea/resources/aws_docdb_cluster_endpoint/types.rb +50 -0
- data/lib/pangea/resources/aws_docdb_cluster_instance/resource.rb +85 -0
- data/lib/pangea/resources/aws_docdb_cluster_instance/types.rb +59 -0
- data/lib/pangea/resources/aws_docdb_cluster_parameter_group/resource.rb +67 -0
- data/lib/pangea/resources/aws_docdb_cluster_parameter_group/types.rb +49 -0
- data/lib/pangea/resources/aws_docdb_cluster_snapshot/resource.rb +76 -0
- data/lib/pangea/resources/aws_docdb_cluster_snapshot/types.rb +47 -0
- data/lib/pangea/resources/aws_docdb_event_subscription/resource.rb +70 -0
- data/lib/pangea/resources/aws_docdb_event_subscription/types.rb +51 -0
- data/lib/pangea/resources/aws_docdb_global_cluster/resource.rb +72 -0
- data/lib/pangea/resources/aws_docdb_global_cluster/types.rb +52 -0
- data/lib/pangea/resources/aws_docdb_subnet_group/resource.rb +66 -0
- data/lib/pangea/resources/aws_docdb_subnet_group/types.rb +48 -0
- data/lib/pangea/resources/aws_drs_launch_configuration_template/resource.rb +180 -0
- data/lib/pangea/resources/aws_drs_replication_configuration_template/resource.rb +153 -0
- data/lib/pangea/resources/aws_dynamodb_global_table/resource.rb +131 -0
- data/lib/pangea/resources/aws_dynamodb_global_table/types/configs.rb +105 -0
- data/lib/pangea/resources/aws_dynamodb_global_table/types/instance_methods.rb +68 -0
- data/lib/pangea/resources/aws_dynamodb_global_table/types.rb +125 -0
- data/lib/pangea/resources/aws_dynamodb_global_table/types.rbs +39 -0
- data/lib/pangea/resources/aws_dynamodb_kinesis_streaming_destination/resource.rb +67 -0
- data/lib/pangea/resources/aws_dynamodb_kinesis_streaming_destination/types.rb +69 -0
- data/lib/pangea/resources/aws_dynamodb_table/builders/config_builder.rb +147 -0
- data/lib/pangea/resources/aws_dynamodb_table/builders/index_builder.rb +62 -0
- data/lib/pangea/resources/aws_dynamodb_table/builders/reference_builder.rb +64 -0
- data/lib/pangea/resources/aws_dynamodb_table/builders/table_builder.rb +60 -0
- data/lib/pangea/resources/aws_dynamodb_table/resource.rb +162 -0
- data/lib/pangea/resources/aws_dynamodb_table/types/attributes.rb +150 -0
- data/lib/pangea/resources/aws_dynamodb_table/types/configs.rb +109 -0
- data/lib/pangea/resources/aws_dynamodb_table/types/instance_methods.rb +82 -0
- data/lib/pangea/resources/aws_dynamodb_table/types/validations.rb +139 -0
- data/lib/pangea/resources/aws_dynamodb_table/types.rb +31 -0
- data/lib/pangea/resources/aws_dynamodb_table/types.rbs +55 -0
- data/lib/pangea/resources/aws_dynamodb_table_export/resource.rb +82 -0
- data/lib/pangea/resources/aws_dynamodb_table_export/types.rb +93 -0
- data/lib/pangea/resources/aws_ebs_volume/resource.rb +111 -0
- data/lib/pangea/resources/aws_ebs_volume/types/attributes.rb +76 -0
- data/lib/pangea/resources/aws_ebs_volume/types/instance_methods.rb +121 -0
- data/lib/pangea/resources/aws_ebs_volume/types/validation.rb +114 -0
- data/lib/pangea/resources/aws_ebs_volume/types.rb +29 -0
- data/lib/pangea/resources/aws_ec2_ami_launch_permission/resource.rb +63 -0
- data/lib/pangea/resources/aws_ec2_ami_launch_permission/types.rb +44 -0
- data/lib/pangea/resources/aws_ec2_availability_zone_group/resource.rb +63 -0
- data/lib/pangea/resources/aws_ec2_availability_zone_group/types.rb +44 -0
- data/lib/pangea/resources/aws_ec2_capacity_block_reservation/resource.rb +63 -0
- data/lib/pangea/resources/aws_ec2_capacity_block_reservation/types.rb +44 -0
- data/lib/pangea/resources/aws_ec2_capacity_reservation/resource.rb +63 -0
- data/lib/pangea/resources/aws_ec2_capacity_reservation/types.rb +44 -0
- data/lib/pangea/resources/aws_ec2_dedicated_host/resource.rb +63 -0
- data/lib/pangea/resources/aws_ec2_dedicated_host/types.rb +44 -0
- data/lib/pangea/resources/aws_ec2_fleet/resource.rb +63 -0
- data/lib/pangea/resources/aws_ec2_fleet/types.rb +44 -0
- data/lib/pangea/resources/aws_ec2_host_resource_group_association/resource.rb +63 -0
- data/lib/pangea/resources/aws_ec2_host_resource_group_association/types.rb +44 -0
- data/lib/pangea/resources/aws_ec2_image_block_public_access/resource.rb +63 -0
- data/lib/pangea/resources/aws_ec2_image_block_public_access/types.rb +44 -0
- data/lib/pangea/resources/aws_ec2_instance_metadata_defaults/resource.rb +63 -0
- data/lib/pangea/resources/aws_ec2_instance_metadata_defaults/types.rb +44 -0
- data/lib/pangea/resources/aws_ec2_serial_console_access/resource.rb +63 -0
- data/lib/pangea/resources/aws_ec2_serial_console_access/types.rb +44 -0
- data/lib/pangea/resources/aws_ec2_snapshot_block_public_access/resource.rb +63 -0
- data/lib/pangea/resources/aws_ec2_snapshot_block_public_access/types.rb +44 -0
- data/lib/pangea/resources/aws_ec2_spot_datafeed_subscription/resource.rb +63 -0
- data/lib/pangea/resources/aws_ec2_spot_datafeed_subscription/types.rb +44 -0
- data/lib/pangea/resources/aws_ec2_spot_fleet_request/resource.rb +63 -0
- data/lib/pangea/resources/aws_ec2_spot_fleet_request/types.rb +44 -0
- data/lib/pangea/resources/aws_ec2_spot_instance_request/resource.rb +63 -0
- data/lib/pangea/resources/aws_ec2_spot_instance_request/types.rb +44 -0
- data/lib/pangea/resources/aws_ec2_tag/resource.rb +63 -0
- data/lib/pangea/resources/aws_ec2_tag/types.rb +44 -0
- data/lib/pangea/resources/aws_ec2_transit_gateway/resource.rb +111 -0
- data/lib/pangea/resources/aws_ec2_transit_gateway/types.rb +123 -0
- data/lib/pangea/resources/aws_ec2_transit_gateway_multicast_domain/resource.rb +63 -0
- data/lib/pangea/resources/aws_ec2_transit_gateway_multicast_domain/types.rb +44 -0
- data/lib/pangea/resources/aws_ec2_transit_gateway_multicast_domain_association/resource.rb +63 -0
- data/lib/pangea/resources/aws_ec2_transit_gateway_multicast_domain_association/types.rb +44 -0
- data/lib/pangea/resources/aws_ec2_transit_gateway_multicast_group_member/resource.rb +63 -0
- data/lib/pangea/resources/aws_ec2_transit_gateway_multicast_group_member/types.rb +44 -0
- data/lib/pangea/resources/aws_ec2_transit_gateway_route/resource.rb +78 -0
- data/lib/pangea/resources/aws_ec2_transit_gateway_route/types/network_analysis.rb +91 -0
- data/lib/pangea/resources/aws_ec2_transit_gateway_route/types/security_analysis.rb +144 -0
- data/lib/pangea/resources/aws_ec2_transit_gateway_route/types.rb +84 -0
- data/lib/pangea/resources/aws_ec2_transit_gateway_route_table/resource.rb +74 -0
- data/lib/pangea/resources/aws_ec2_transit_gateway_route_table/types.rb +170 -0
- data/lib/pangea/resources/aws_ec2_transit_gateway_route_table_association/resource.rb +71 -0
- data/lib/pangea/resources/aws_ec2_transit_gateway_route_table_association/types.rb +170 -0
- data/lib/pangea/resources/aws_ec2_transit_gateway_route_table_propagation/resource.rb +67 -0
- data/lib/pangea/resources/aws_ec2_transit_gateway_route_table_propagation/types/propagation_insights.rb +100 -0
- data/lib/pangea/resources/aws_ec2_transit_gateway_route_table_propagation/types/security_concerns.rb +67 -0
- data/lib/pangea/resources/aws_ec2_transit_gateway_route_table_propagation/types/troubleshooting_support.rb +68 -0
- data/lib/pangea/resources/aws_ec2_transit_gateway_route_table_propagation/types.rb +58 -0
- data/lib/pangea/resources/aws_ec2_transit_gateway_vpc_attachment/resource.rb +98 -0
- data/lib/pangea/resources/aws_ec2_transit_gateway_vpc_attachment/types.rb +151 -0
- data/lib/pangea/resources/aws_ecr_lifecycle_policy/resource.rb +161 -0
- data/lib/pangea/resources/aws_ecr_lifecycle_policy/types/computed.rb +110 -0
- data/lib/pangea/resources/aws_ecr_lifecycle_policy/types/validation.rb +69 -0
- data/lib/pangea/resources/aws_ecr_lifecycle_policy/types.rb +95 -0
- data/lib/pangea/resources/aws_ecr_replication_configuration/resource.rb +144 -0
- data/lib/pangea/resources/aws_ecr_replication_configuration/types.rb +168 -0
- data/lib/pangea/resources/aws_ecr_repository/resource.rb +132 -0
- data/lib/pangea/resources/aws_ecr_repository/types.rb +128 -0
- data/lib/pangea/resources/aws_ecr_repository_policy/resource.rb +130 -0
- data/lib/pangea/resources/aws_ecr_repository_policy/types.rb +192 -0
- data/lib/pangea/resources/aws_ecs_capacity_provider/resource.rb +103 -0
- data/lib/pangea/resources/aws_ecs_capacity_provider/types.rb +109 -0
- data/lib/pangea/resources/aws_ecs_cluster/resource.rb +115 -0
- data/lib/pangea/resources/aws_ecs_cluster/types.rb +156 -0
- data/lib/pangea/resources/aws_ecs_cluster_capacity_providers/resource.rb +76 -0
- data/lib/pangea/resources/aws_ecs_cluster_capacity_providers/types.rb +169 -0
- data/lib/pangea/resources/aws_ecs_service/dsl_builders.rb +193 -0
- data/lib/pangea/resources/aws_ecs_service/reference_builder.rb +53 -0
- data/lib/pangea/resources/aws_ecs_service/resource.rb +196 -0
- data/lib/pangea/resources/aws_ecs_service/types/attributes.rb +61 -0
- data/lib/pangea/resources/aws_ecs_service/types/helpers.rb +34 -0
- data/lib/pangea/resources/aws_ecs_service/types/nested.rb +76 -0
- data/lib/pangea/resources/aws_ecs_service/types.rb +7 -0
- data/lib/pangea/resources/aws_ecs_task_definition/container_definitions.rb +191 -0
- data/lib/pangea/resources/aws_ecs_task_definition/resource.rb +205 -0
- data/lib/pangea/resources/aws_ecs_task_definition/types/container_definition.rb +121 -0
- data/lib/pangea/resources/aws_ecs_task_definition/types/task_definition.rb +100 -0
- data/lib/pangea/resources/aws_ecs_task_definition/types.rb +18 -0
- data/lib/pangea/resources/aws_ecs_task_definition/volumes.rb +105 -0
- data/lib/pangea/resources/aws_efs_access_point/resource.rb +74 -0
- data/lib/pangea/resources/aws_efs_access_point/types.rb +184 -0
- data/lib/pangea/resources/aws_efs_file_system/resource.rb +86 -0
- data/lib/pangea/resources/aws_efs_file_system/types.rb +144 -0
- data/lib/pangea/resources/aws_efs_mount_target/resource.rb +65 -0
- data/lib/pangea/resources/aws_efs_mount_target/types.rb +99 -0
- data/lib/pangea/resources/aws_eip/resource.rb +105 -0
- data/lib/pangea/resources/aws_eip/types.rb +101 -0
- data/lib/pangea/resources/aws_eip_association/resource.rb +73 -0
- data/lib/pangea/resources/aws_eip_association/types.rb +86 -0
- data/lib/pangea/resources/aws_eks_access_entry/resource.rb +89 -0
- data/lib/pangea/resources/aws_eks_access_entry/types.rb +105 -0
- data/lib/pangea/resources/aws_eks_addon/resource.rb +150 -0
- data/lib/pangea/resources/aws_eks_addon/types.rb +198 -0
- data/lib/pangea/resources/aws_eks_cluster/resource.rb +143 -0
- data/lib/pangea/resources/aws_eks_cluster/types.rb +186 -0
- data/lib/pangea/resources/aws_eks_fargate_profile/resource.rb +149 -0
- data/lib/pangea/resources/aws_eks_fargate_profile/types.rb +144 -0
- data/lib/pangea/resources/aws_eks_node_group/builders/dsl_builder.rb +107 -0
- data/lib/pangea/resources/aws_eks_node_group/builders/reference_builder.rb +76 -0
- data/lib/pangea/resources/aws_eks_node_group/resource.rb +114 -0
- data/lib/pangea/resources/aws_eks_node_group/types/eks_node_group_attributes.rb +132 -0
- data/lib/pangea/resources/aws_eks_node_group/types/launch_template.rb +58 -0
- data/lib/pangea/resources/aws_eks_node_group/types/remote_access.rb +41 -0
- data/lib/pangea/resources/aws_eks_node_group/types/scaling_config.rb +62 -0
- data/lib/pangea/resources/aws_eks_node_group/types/taint.rb +43 -0
- data/lib/pangea/resources/aws_eks_node_group/types/update_config.rb +54 -0
- data/lib/pangea/resources/aws_eks_node_group/types.rb +26 -0
- data/lib/pangea/resources/aws_elasticache_cluster/resource.rb +131 -0
- data/lib/pangea/resources/aws_elasticache_cluster/types/configs.rb +69 -0
- data/lib/pangea/resources/aws_elasticache_cluster/types/helpers.rb +97 -0
- data/lib/pangea/resources/aws_elasticache_cluster/types/node_types.rb +51 -0
- data/lib/pangea/resources/aws_elasticache_cluster/types/validators.rb +114 -0
- data/lib/pangea/resources/aws_elasticache_cluster/types.rb +119 -0
- data/lib/pangea/resources/aws_elasticache_cluster/types.rbs +41 -0
- data/lib/pangea/resources/aws_elasticache_parameter_group/resource.rb +91 -0
- data/lib/pangea/resources/aws_elasticache_parameter_group/types/attributes.rb +132 -0
- data/lib/pangea/resources/aws_elasticache_parameter_group/types/configs.rb +102 -0
- data/lib/pangea/resources/aws_elasticache_parameter_group/types/parameter_helpers.rb +133 -0
- data/lib/pangea/resources/aws_elasticache_parameter_group/types.rb +20 -0
- data/lib/pangea/resources/aws_elasticache_subnet_group/resource.rb +76 -0
- data/lib/pangea/resources/aws_elasticache_subnet_group/types.rb +157 -0
- data/lib/pangea/resources/aws_elb_attachment/resource.rb +63 -0
- data/lib/pangea/resources/aws_elb_attachment/types.rb +44 -0
- data/lib/pangea/resources/aws_elb_service_account/resource.rb +63 -0
- data/lib/pangea/resources/aws_elb_service_account/types.rb +44 -0
- data/lib/pangea/resources/aws_elemental_data_plane_channel/resource.rb +71 -0
- data/lib/pangea/resources/aws_elemental_data_plane_channel/types.rb +64 -0
- data/lib/pangea/resources/aws_emr_cluster/resource/dsl_builder/auto_scaling.rb +93 -0
- data/lib/pangea/resources/aws_emr_cluster/resource/dsl_builder/cluster_settings.rb +106 -0
- data/lib/pangea/resources/aws_emr_cluster/resource/dsl_builder/configurations.rb +75 -0
- data/lib/pangea/resources/aws_emr_cluster/resource/dsl_builder/ec2_attributes.rb +56 -0
- data/lib/pangea/resources/aws_emr_cluster/resource/dsl_builder/instance_groups.rb +101 -0
- data/lib/pangea/resources/aws_emr_cluster/resource/dsl_builder.rb +44 -0
- data/lib/pangea/resources/aws_emr_cluster/resource.rb +105 -0
- data/lib/pangea/resources/aws_emr_cluster/types/attributes.rb +97 -0
- data/lib/pangea/resources/aws_emr_cluster/types/class_methods.rb +114 -0
- data/lib/pangea/resources/aws_emr_cluster/types/instance_methods.rb +113 -0
- data/lib/pangea/resources/aws_emr_cluster/types/validation.rb +51 -0
- data/lib/pangea/resources/aws_emr_cluster/types.rb +21 -0
- data/lib/pangea/resources/aws_emr_cluster/types.rbs +67 -0
- data/lib/pangea/resources/aws_emr_instance_group/resource.rb +182 -0
- data/lib/pangea/resources/aws_emr_instance_group/types/attributes.rb +90 -0
- data/lib/pangea/resources/aws_emr_instance_group/types/configs.rb +63 -0
- data/lib/pangea/resources/aws_emr_instance_group/types.rb +18 -0
- data/lib/pangea/resources/aws_emr_instance_group/types.rbs +51 -0
- data/lib/pangea/resources/aws_emr_step/resource.rb +93 -0
- data/lib/pangea/resources/aws_emr_step/types/attributes.rb +92 -0
- data/lib/pangea/resources/aws_emr_step/types/step_builders.rb +90 -0
- data/lib/pangea/resources/aws_emr_step/types.rb +18 -0
- data/lib/pangea/resources/aws_emr_step/types.rbs +46 -0
- data/lib/pangea/resources/aws_eventbridge_bus/resource.rb +75 -0
- data/lib/pangea/resources/aws_eventbridge_bus/types.rb +175 -0
- data/lib/pangea/resources/aws_eventbridge_bus/types.rbs +32 -0
- data/lib/pangea/resources/aws_eventbridge_rule/resource.rb +92 -0
- data/lib/pangea/resources/aws_eventbridge_rule/types/attributes.rb +80 -0
- data/lib/pangea/resources/aws_eventbridge_rule/types/helpers.rb +101 -0
- data/lib/pangea/resources/aws_eventbridge_rule/types/templates.rb +131 -0
- data/lib/pangea/resources/aws_eventbridge_rule/types/validators.rb +87 -0
- data/lib/pangea/resources/aws_eventbridge_rule/types.rb +24 -0
- data/lib/pangea/resources/aws_eventbridge_rule/types.rbs +41 -0
- data/lib/pangea/resources/aws_eventbridge_target/batch_target_builder.rb +48 -0
- data/lib/pangea/resources/aws_eventbridge_target/ecs_target_builder.rb +101 -0
- data/lib/pangea/resources/aws_eventbridge_target/resource.rb +194 -0
- data/lib/pangea/resources/aws_eventbridge_target/types/attributes.rb +117 -0
- data/lib/pangea/resources/aws_eventbridge_target/types/configs.rb +75 -0
- data/lib/pangea/resources/aws_eventbridge_target/types/parameters.rb +66 -0
- data/lib/pangea/resources/aws_eventbridge_target/types.rb +21 -0
- data/lib/pangea/resources/aws_eventbridge_target/types.rbs +58 -0
- data/lib/pangea/resources/aws_fsx_lustre_filesystem/resource.rb +148 -0
- data/lib/pangea/resources/aws_fsx_lustre_filesystem/types/helpers.rb +101 -0
- data/lib/pangea/resources/aws_fsx_lustre_filesystem/types.rb +115 -0
- data/lib/pangea/resources/aws_gamelift_alias/resource.rb +75 -0
- data/lib/pangea/resources/aws_gamelift_alias/types.rb +58 -0
- data/lib/pangea/resources/aws_gamelift_build/resource.rb +86 -0
- data/lib/pangea/resources/aws_gamelift_build/types.rb +37 -0
- data/lib/pangea/resources/aws_gamelift_compute/resource.rb +83 -0
- data/lib/pangea/resources/aws_gamelift_compute/types.rb +28 -0
- data/lib/pangea/resources/aws_gamelift_fleet/resource.rb +115 -0
- data/lib/pangea/resources/aws_gamelift_fleet/types.rb +61 -0
- data/lib/pangea/resources/aws_gamelift_game_session/resource.rb +104 -0
- data/lib/pangea/resources/aws_gamelift_game_session/types.rb +33 -0
- data/lib/pangea/resources/aws_gamelift_game_session_queue/resource.rb +98 -0
- data/lib/pangea/resources/aws_gamelift_game_session_queue/types.rb +53 -0
- data/lib/pangea/resources/aws_gamelift_matchmaking_configuration/resource.rb +80 -0
- data/lib/pangea/resources/aws_gamelift_matchmaking_configuration/types.rb +31 -0
- data/lib/pangea/resources/aws_gamelift_matchmaking_rule_set/resource.rb +85 -0
- data/lib/pangea/resources/aws_gamelift_matchmaking_rule_set/types.rb +28 -0
- data/lib/pangea/resources/aws_gamelift_player_session/resource.rb +83 -0
- data/lib/pangea/resources/aws_gamelift_player_session/types.rb +28 -0
- data/lib/pangea/resources/aws_gamelift_script/resource.rb +96 -0
- data/lib/pangea/resources/aws_gamelift_script/types.rb +36 -0
- data/lib/pangea/resources/aws_gamesparks_game/resource.rb +79 -0
- data/lib/pangea/resources/aws_gamesparks_game/types.rb +28 -0
- data/lib/pangea/resources/aws_glue_catalog_database/resource.rb +105 -0
- data/lib/pangea/resources/aws_glue_catalog_database/types.rb +150 -0
- data/lib/pangea/resources/aws_glue_catalog_database/types.rbs +36 -0
- data/lib/pangea/resources/aws_glue_catalog_table/resource.rb +177 -0
- data/lib/pangea/resources/aws_glue_catalog_table/types/format_helpers.rb +80 -0
- data/lib/pangea/resources/aws_glue_catalog_table/types/storage_descriptor.rb +60 -0
- data/lib/pangea/resources/aws_glue_catalog_table/types/table_helpers.rb +95 -0
- data/lib/pangea/resources/aws_glue_catalog_table/types/validators.rb +72 -0
- data/lib/pangea/resources/aws_glue_catalog_table/types.rb +89 -0
- data/lib/pangea/resources/aws_glue_catalog_table/types.rbs +44 -0
- data/lib/pangea/resources/aws_glue_job/resource.rb +144 -0
- data/lib/pangea/resources/aws_glue_job/types/attributes.rb +99 -0
- data/lib/pangea/resources/aws_glue_job/types/class_methods.rb +86 -0
- data/lib/pangea/resources/aws_glue_job/types/instance_methods.rb +97 -0
- data/lib/pangea/resources/aws_glue_job/types/validation.rb +68 -0
- data/lib/pangea/resources/aws_glue_job/types.rb +21 -0
- data/lib/pangea/resources/aws_glue_job/types.rbs +50 -0
- data/lib/pangea/resources/aws_glue_trigger/resource.rb +155 -0
- data/lib/pangea/resources/aws_glue_trigger/types/attributes.rb +91 -0
- data/lib/pangea/resources/aws_glue_trigger/types/helpers/class_methods.rb +109 -0
- data/lib/pangea/resources/aws_glue_trigger/types/helpers/instance_methods.rb +140 -0
- data/lib/pangea/resources/aws_glue_trigger/types/helpers.rb +35 -0
- data/lib/pangea/resources/aws_glue_trigger/types/validation.rb +97 -0
- data/lib/pangea/resources/aws_glue_trigger/types.rb +34 -0
- data/lib/pangea/resources/aws_glue_trigger/types.rbs +53 -0
- data/lib/pangea/resources/aws_ground_station/config.rb +145 -0
- data/lib/pangea/resources/aws_ground_station/contact.rb +48 -0
- data/lib/pangea/resources/aws_ground_station/dataflow_endpoint_group.rb +46 -0
- data/lib/pangea/resources/aws_ground_station/mission_profile.rb +50 -0
- data/lib/pangea/resources/aws_guardduty_detector/resource.rb +101 -0
- data/lib/pangea/resources/aws_guardduty_detector/types.rb +91 -0
- data/lib/pangea/resources/aws_guardduty_member/resource.rb +69 -0
- data/lib/pangea/resources/aws_guardduty_member/types.rb +58 -0
- data/lib/pangea/resources/aws_iam_group/resource.rb +75 -0
- data/lib/pangea/resources/aws_iam_group/types/access_patterns.rb +82 -0
- data/lib/pangea/resources/aws_iam_group/types/attributes.rb +97 -0
- data/lib/pangea/resources/aws_iam_group/types/group_classification.rb +136 -0
- data/lib/pangea/resources/aws_iam_group/types/patterns.rb +96 -0
- data/lib/pangea/resources/aws_iam_group/types.rb +22 -0
- data/lib/pangea/resources/aws_iam_policy/resource.rb +83 -0
- data/lib/pangea/resources/aws_iam_policy/types/attributes.rb +118 -0
- data/lib/pangea/resources/aws_iam_policy/types/templates.rb +57 -0
- data/lib/pangea/resources/aws_iam_policy/types.rb +19 -0
- data/lib/pangea/resources/aws_iam_role/resource.rb +95 -0
- data/lib/pangea/resources/aws_iam_role/types/trust_policies.rb +90 -0
- data/lib/pangea/resources/aws_iam_role/types.rb +141 -0
- data/lib/pangea/resources/aws_iam_role_policy_attachment/resource.rb +68 -0
- data/lib/pangea/resources/aws_iam_role_policy_attachment/types/attachment_patterns.rb +75 -0
- data/lib/pangea/resources/aws_iam_role_policy_attachment/types/aws_managed_policies.rb +92 -0
- data/lib/pangea/resources/aws_iam_role_policy_attachment/types.rb +148 -0
- data/lib/pangea/resources/aws_iam_user/resource.rb +76 -0
- data/lib/pangea/resources/aws_iam_user/types/attributes.rb +100 -0
- data/lib/pangea/resources/aws_iam_user/types/helpers.rb +95 -0
- data/lib/pangea/resources/aws_iam_user/types/templates.rb +152 -0
- data/lib/pangea/resources/aws_iam_user/types/validators.rb +24 -0
- data/lib/pangea/resources/aws_iam_user/types.rb +20 -0
- data/lib/pangea/resources/aws_inspector2_enabler/resource.rb +63 -0
- data/lib/pangea/resources/aws_inspector2_enabler/types.rb +85 -0
- data/lib/pangea/resources/aws_instance/resource.rb +120 -0
- data/lib/pangea/resources/aws_instance/types.rb +148 -0
- data/lib/pangea/resources/aws_internet_gateway/resource.rb +76 -0
- data/lib/pangea/resources/aws_internet_gateway/types.rb +46 -0
- data/lib/pangea/resources/aws_iot_analytics_channel/resource.rb +87 -0
- data/lib/pangea/resources/aws_iot_analytics_channel/types.rb +57 -0
- data/lib/pangea/resources/aws_iot_analytics_datastore/resource.rb +106 -0
- data/lib/pangea/resources/aws_iot_analytics_datastore/types.rb +60 -0
- data/lib/pangea/resources/aws_iot_authorizer/resource.rb +94 -0
- data/lib/pangea/resources/aws_iot_authorizer/types.rb +54 -0
- data/lib/pangea/resources/aws_iot_billing_group/resource.rb +90 -0
- data/lib/pangea/resources/aws_iot_billing_group/types.rb +39 -0
- data/lib/pangea/resources/aws_iot_ca_certificate/resource.rb +124 -0
- data/lib/pangea/resources/aws_iot_ca_certificate/types.rb +46 -0
- data/lib/pangea/resources/aws_iot_certificate/resource.rb +90 -0
- data/lib/pangea/resources/aws_iot_certificate/types/helpers.rb +164 -0
- data/lib/pangea/resources/aws_iot_certificate/types/validators.rb +84 -0
- data/lib/pangea/resources/aws_iot_certificate/types.rb +76 -0
- data/lib/pangea/resources/aws_iot_device_defender_security_profile/resource.rb +74 -0
- data/lib/pangea/resources/aws_iot_device_defender_security_profile/types.rb +55 -0
- data/lib/pangea/resources/aws_iot_domain_configuration/resource.rb +120 -0
- data/lib/pangea/resources/aws_iot_domain_configuration/types.rb +59 -0
- data/lib/pangea/resources/aws_iot_job_template/resource.rb +131 -0
- data/lib/pangea/resources/aws_iot_job_template/types.rb +72 -0
- data/lib/pangea/resources/aws_iot_policy/resource.rb +60 -0
- data/lib/pangea/resources/aws_iot_policy/types.rb +134 -0
- data/lib/pangea/resources/aws_iot_policy_attachment/resource.rb +95 -0
- data/lib/pangea/resources/aws_iot_policy_attachment/types.rb +32 -0
- data/lib/pangea/resources/aws_iot_provisioning_template/resource.rb +130 -0
- data/lib/pangea/resources/aws_iot_provisioning_template/types.rb +43 -0
- data/lib/pangea/resources/aws_iot_role_alias/resource.rb +95 -0
- data/lib/pangea/resources/aws_iot_role_alias/types.rb +32 -0
- data/lib/pangea/resources/aws_iot_security_profile/resource.rb +86 -0
- data/lib/pangea/resources/aws_iot_security_profile/types.rb +52 -0
- data/lib/pangea/resources/aws_iot_thing/resource.rb +84 -0
- data/lib/pangea/resources/aws_iot_thing/types.rb +137 -0
- data/lib/pangea/resources/aws_iot_thing_group/resource.rb +122 -0
- data/lib/pangea/resources/aws_iot_thing_group/types.rb +53 -0
- data/lib/pangea/resources/aws_iot_thing_group_membership/resource.rb +75 -0
- data/lib/pangea/resources/aws_iot_thing_group_membership/types.rb +32 -0
- data/lib/pangea/resources/aws_iot_thing_principal_attachment/resource.rb +88 -0
- data/lib/pangea/resources/aws_iot_thing_principal_attachment/types.rb +32 -0
- data/lib/pangea/resources/aws_iot_thing_type/resource.rb +97 -0
- data/lib/pangea/resources/aws_iot_thing_type/types/analysis.rb +107 -0
- data/lib/pangea/resources/aws_iot_thing_type/types/properties.rb +64 -0
- data/lib/pangea/resources/aws_iot_thing_type/types/recommendations.rb +65 -0
- data/lib/pangea/resources/aws_iot_thing_type/types/templates.rb +69 -0
- data/lib/pangea/resources/aws_iot_thing_type/types.rb +64 -0
- data/lib/pangea/resources/aws_iot_topic_rule/resource.rb +78 -0
- data/lib/pangea/resources/aws_iot_topic_rule/types.rb +52 -0
- data/lib/pangea/resources/aws_iot_topic_rule_destination/resource.rb +63 -0
- data/lib/pangea/resources/aws_iot_topic_rule_destination/types.rb +45 -0
- data/lib/pangea/resources/aws_iot_wireless_destination/resource.rb +79 -0
- data/lib/pangea/resources/aws_iot_wireless_destination/types.rb +31 -0
- data/lib/pangea/resources/aws_iotanalytics_dataset/builders/action_builder.rb +76 -0
- data/lib/pangea/resources/aws_iotanalytics_dataset/resource.rb +171 -0
- data/lib/pangea/resources/aws_iotanalytics_dataset/types/action.rb +93 -0
- data/lib/pangea/resources/aws_iotanalytics_dataset/types/attributes.rb +85 -0
- data/lib/pangea/resources/aws_iotanalytics_dataset/types/content_delivery_rule.rb +69 -0
- data/lib/pangea/resources/aws_iotanalytics_dataset/types/trigger.rb +49 -0
- data/lib/pangea/resources/aws_iotanalytics_dataset/types.rb +24 -0
- data/lib/pangea/resources/aws_key_pair/resource.rb +85 -0
- data/lib/pangea/resources/aws_key_pair/types.rb +173 -0
- data/lib/pangea/resources/aws_kinesis_analytics_application/builders/application_code_builder.rb +62 -0
- data/lib/pangea/resources/aws_kinesis_analytics_application/builders/flink_builder.rb +76 -0
- data/lib/pangea/resources/aws_kinesis_analytics_application/builders/sql_builder.rb +219 -0
- data/lib/pangea/resources/aws_kinesis_analytics_application/resource.rb +127 -0
- data/lib/pangea/resources/aws_kinesis_analytics_application/types/computed.rb +131 -0
- data/lib/pangea/resources/aws_kinesis_analytics_application/types/configs.rb +91 -0
- data/lib/pangea/resources/aws_kinesis_analytics_application/types/sql_configs.rb +114 -0
- data/lib/pangea/resources/aws_kinesis_analytics_application/types/validation.rb +109 -0
- data/lib/pangea/resources/aws_kinesis_analytics_application/types.rb +64 -0
- data/lib/pangea/resources/aws_kinesis_analytics_application/types.rbs +45 -0
- data/lib/pangea/resources/aws_kinesis_firehose_delivery_stream/destination_builders.rb +108 -0
- data/lib/pangea/resources/aws_kinesis_firehose_delivery_stream/resource.rb +95 -0
- data/lib/pangea/resources/aws_kinesis_firehose_delivery_stream/s3_builders.rb +127 -0
- data/lib/pangea/resources/aws_kinesis_firehose_delivery_stream/types/computed_properties.rb +65 -0
- data/lib/pangea/resources/aws_kinesis_firehose_delivery_stream/types/validation.rb +73 -0
- data/lib/pangea/resources/aws_kinesis_firehose_delivery_stream/types.rb +174 -0
- data/lib/pangea/resources/aws_kinesis_firehose_delivery_stream/types.rbs +44 -0
- data/lib/pangea/resources/aws_kinesis_stream/resource.rb +103 -0
- data/lib/pangea/resources/aws_kinesis_stream/types.rb +159 -0
- data/lib/pangea/resources/aws_kinesis_stream/types.rbs +43 -0
- data/lib/pangea/resources/aws_kinesis_video_stream/resource.rb +73 -0
- data/lib/pangea/resources/aws_kinesis_video_stream/types/kms_validation.rb +52 -0
- data/lib/pangea/resources/aws_kinesis_video_stream/types/media_type_helpers.rb +58 -0
- data/lib/pangea/resources/aws_kinesis_video_stream/types/storage_estimation.rb +75 -0
- data/lib/pangea/resources/aws_kinesis_video_stream/types.rb +128 -0
- data/lib/pangea/resources/aws_kinesis_video_stream/types.rbs +48 -0
- data/lib/pangea/resources/aws_kms_alias/resource.rb +74 -0
- data/lib/pangea/resources/aws_kms_alias/types.rb +133 -0
- data/lib/pangea/resources/aws_kms_key/resource.rb +107 -0
- data/lib/pangea/resources/aws_kms_key/types.rb +126 -0
- data/lib/pangea/resources/aws_lambda_event_source_mapping/resource.rb +152 -0
- data/lib/pangea/resources/aws_lambda_event_source_mapping/types.rb +200 -0
- data/lib/pangea/resources/aws_lambda_function/block_builders.rb +113 -0
- data/lib/pangea/resources/aws_lambda_function/resource.rb +144 -0
- data/lib/pangea/resources/aws_lambda_function/types/helpers.rb +58 -0
- data/lib/pangea/resources/aws_lambda_function/types/validators.rb +99 -0
- data/lib/pangea/resources/aws_lambda_function/types.rb +133 -0
- data/lib/pangea/resources/aws_lambda_function_url/resource.rb +86 -0
- data/lib/pangea/resources/aws_lambda_function_url/types.rb +98 -0
- data/lib/pangea/resources/aws_lambda_layer_version/resource.rb +85 -0
- data/lib/pangea/resources/aws_lambda_layer_version/types.rb +158 -0
- data/lib/pangea/resources/aws_lambda_permission/resource.rb +73 -0
- data/lib/pangea/resources/aws_lambda_permission/types.rb +116 -0
- data/lib/pangea/resources/aws_launch_configuration/resource.rb +63 -0
- data/lib/pangea/resources/aws_launch_configuration/types.rb +44 -0
- data/lib/pangea/resources/aws_launch_template/resource.rb +195 -0
- data/lib/pangea/resources/aws_launch_template/types/block_device_mapping.rb +74 -0
- data/lib/pangea/resources/aws_launch_template/types/iam_instance_profile.rb +48 -0
- data/lib/pangea/resources/aws_launch_template/types/network_interface.rb +43 -0
- data/lib/pangea/resources/aws_launch_template/types/tag_specification.rb +40 -0
- data/lib/pangea/resources/aws_launch_template/types.rb +127 -0
- data/lib/pangea/resources/aws_lb/resource.rb +108 -0
- data/lib/pangea/resources/aws_lb/types.rb +87 -0
- data/lib/pangea/resources/aws_lb_cookie_stickiness_policy/resource.rb +63 -0
- data/lib/pangea/resources/aws_lb_cookie_stickiness_policy/types.rb +44 -0
- data/lib/pangea/resources/aws_lb_listener/resource.rb +126 -0
- data/lib/pangea/resources/aws_lb_listener/types.rb +124 -0
- data/lib/pangea/resources/aws_lb_listener/types.rbs +23 -0
- data/lib/pangea/resources/aws_lb_listener_certificate/resource.rb +53 -0
- data/lib/pangea/resources/aws_lb_listener_certificate/types.rb +52 -0
- data/lib/pangea/resources/aws_lb_listener_certificate/types.rbs +17 -0
- data/lib/pangea/resources/aws_lb_listener_rule/action_builders.rb +123 -0
- data/lib/pangea/resources/aws_lb_listener_rule/resource.rb +122 -0
- data/lib/pangea/resources/aws_lb_listener_rule/types.rb +121 -0
- data/lib/pangea/resources/aws_lb_listener_rule/types.rbs +20 -0
- data/lib/pangea/resources/aws_lb_ssl_negotiation_policy/resource.rb +63 -0
- data/lib/pangea/resources/aws_lb_ssl_negotiation_policy/types.rb +44 -0
- data/lib/pangea/resources/aws_lb_target_group/resource.rb +156 -0
- data/lib/pangea/resources/aws_lb_target_group/types.rb +206 -0
- data/lib/pangea/resources/aws_lb_target_group_attachment/resource.rb +63 -0
- data/lib/pangea/resources/aws_lb_target_group_attachment/types.rb +44 -0
- data/lib/pangea/resources/aws_lb_target_group_attachment/types.rbs +21 -0
- data/lib/pangea/resources/aws_lb_trust_store/resource.rb +63 -0
- data/lib/pangea/resources/aws_lb_trust_store/types.rb +44 -0
- data/lib/pangea/resources/aws_lb_trust_store_revocation/resource.rb +63 -0
- data/lib/pangea/resources/aws_lb_trust_store_revocation/types.rb +44 -0
- data/lib/pangea/resources/aws_licensemanager_association/resource.rb +64 -0
- data/lib/pangea/resources/aws_licensemanager_association/types.rb +47 -0
- data/lib/pangea/resources/aws_licensemanager_grant/resource.rb +70 -0
- data/lib/pangea/resources/aws_licensemanager_grant/types.rb +50 -0
- data/lib/pangea/resources/aws_licensemanager_grant_accepter/resource.rb +70 -0
- data/lib/pangea/resources/aws_licensemanager_grant_accepter/types.rb +46 -0
- data/lib/pangea/resources/aws_licensemanager_license_configuration/resource.rb +70 -0
- data/lib/pangea/resources/aws_licensemanager_license_configuration/types.rb +51 -0
- data/lib/pangea/resources/aws_licensemanager_license_grant_accepter/resource.rb +64 -0
- data/lib/pangea/resources/aws_licensemanager_license_grant_accepter/types.rb +46 -0
- data/lib/pangea/resources/aws_licensemanager_report_generator/resource.rb +69 -0
- data/lib/pangea/resources/aws_licensemanager_report_generator/types.rb +51 -0
- data/lib/pangea/resources/aws_licensemanager_token/resource.rb +67 -0
- data/lib/pangea/resources/aws_licensemanager_token/types.rb +48 -0
- data/lib/pangea/resources/aws_lightsail/compute.rb +83 -0
- data/lib/pangea/resources/aws_lightsail/database.rb +66 -0
- data/lib/pangea/resources/aws_lightsail/load_balancer.rb +68 -0
- data/lib/pangea/resources/aws_lightsail/networking.rb +118 -0
- data/lib/pangea/resources/aws_lightsail/storage.rb +101 -0
- data/lib/pangea/resources/aws_load_balancer_backend_server_policy/resource.rb +63 -0
- data/lib/pangea/resources/aws_load_balancer_backend_server_policy/types.rb +44 -0
- data/lib/pangea/resources/aws_load_balancer_listener_policy/resource.rb +63 -0
- data/lib/pangea/resources/aws_load_balancer_listener_policy/types.rb +44 -0
- data/lib/pangea/resources/aws_load_balancer_policy/resource.rb +63 -0
- data/lib/pangea/resources/aws_load_balancer_policy/types.rb +44 -0
- data/lib/pangea/resources/aws_local_zones/data_sources.rb +133 -0
- data/lib/pangea/resources/aws_local_zones/resources.rb +90 -0
- data/lib/pangea/resources/aws_managedblockchain_accessor/resource.rb +83 -0
- data/lib/pangea/resources/aws_managedblockchain_accessor/types/blockchain_helpers.rb +76 -0
- data/lib/pangea/resources/aws_managedblockchain_accessor/types/cost_helpers.rb +68 -0
- data/lib/pangea/resources/aws_managedblockchain_accessor/types/network_helpers.rb +95 -0
- data/lib/pangea/resources/aws_managedblockchain_accessor/types.rb +87 -0
- data/lib/pangea/resources/aws_managedblockchain_ethereum_node/resource.rb +94 -0
- data/lib/pangea/resources/aws_managedblockchain_ethereum_node/types/attributes.rb +78 -0
- data/lib/pangea/resources/aws_managedblockchain_ethereum_node/types/helpers.rb +97 -0
- data/lib/pangea/resources/aws_managedblockchain_ethereum_node/types.rb +7 -0
- data/lib/pangea/resources/aws_managedblockchain_member/resource.rb +124 -0
- data/lib/pangea/resources/aws_managedblockchain_member/types/instance_methods.rb +102 -0
- data/lib/pangea/resources/aws_managedblockchain_member/types/validation.rb +80 -0
- data/lib/pangea/resources/aws_managedblockchain_member/types.rb +81 -0
- data/lib/pangea/resources/aws_managedblockchain_network/resource.rb +157 -0
- data/lib/pangea/resources/aws_managedblockchain_network/types/helpers.rb +107 -0
- data/lib/pangea/resources/aws_managedblockchain_network/types/validation.rb +91 -0
- data/lib/pangea/resources/aws_managedblockchain_network/types.rb +110 -0
- data/lib/pangea/resources/aws_managedblockchain_node/resource.rb +126 -0
- data/lib/pangea/resources/aws_managedblockchain_node/types/attributes.rb +85 -0
- data/lib/pangea/resources/aws_managedblockchain_node/types/cost_and_specs.rb +75 -0
- data/lib/pangea/resources/aws_managedblockchain_node/types/instance_methods.rb +96 -0
- data/lib/pangea/resources/aws_managedblockchain_node/types/validation.rb +56 -0
- data/lib/pangea/resources/aws_managedblockchain_node/types.rb +22 -0
- data/lib/pangea/resources/aws_media_convert_queue/resource.rb +71 -0
- data/lib/pangea/resources/aws_media_convert_queue/types.rb +69 -0
- data/lib/pangea/resources/aws_media_live_channel/resource/dsl_builder/configurations.rb +74 -0
- data/lib/pangea/resources/aws_media_live_channel/resource/dsl_builder/destinations.rb +67 -0
- data/lib/pangea/resources/aws_media_live_channel/resource/dsl_builder/encoder_settings/audio_descriptions.rb +101 -0
- data/lib/pangea/resources/aws_media_live_channel/resource/dsl_builder/encoder_settings/output_groups.rb +163 -0
- data/lib/pangea/resources/aws_media_live_channel/resource/dsl_builder/encoder_settings/video_descriptions.rb +86 -0
- data/lib/pangea/resources/aws_media_live_channel/resource/dsl_builder/encoder_settings.rb +52 -0
- data/lib/pangea/resources/aws_media_live_channel/resource/dsl_builder/input_attachments.rb +131 -0
- data/lib/pangea/resources/aws_media_live_channel/resource/dsl_builder.rb +42 -0
- data/lib/pangea/resources/aws_media_live_channel/resource.rb +86 -0
- data/lib/pangea/resources/aws_media_live_channel/types/audio_codec_settings.rb +106 -0
- data/lib/pangea/resources/aws_media_live_channel/types/caption_settings.rb +117 -0
- data/lib/pangea/resources/aws_media_live_channel/types/channel_config.rb +77 -0
- data/lib/pangea/resources/aws_media_live_channel/types/encoder_config.rb +108 -0
- data/lib/pangea/resources/aws_media_live_channel/types/helpers.rb +58 -0
- data/lib/pangea/resources/aws_media_live_channel/types/hls_group_settings.rb +113 -0
- data/lib/pangea/resources/aws_media_live_channel/types/input_settings.rb +106 -0
- data/lib/pangea/resources/aws_media_live_channel/types/output_group_settings.rb +102 -0
- data/lib/pangea/resources/aws_media_live_channel/types/output_groups.rb +48 -0
- data/lib/pangea/resources/aws_media_live_channel/types/output_settings.rb +158 -0
- data/lib/pangea/resources/aws_media_live_channel/types/schedule_settings.rb +194 -0
- data/lib/pangea/resources/aws_media_live_channel/types/video_codec_h265_mpeg2.rb +116 -0
- data/lib/pangea/resources/aws_media_live_channel/types/video_codec_settings.rb +93 -0
- data/lib/pangea/resources/aws_media_live_channel/types.rb +139 -0
- data/lib/pangea/resources/aws_media_live_input/resource.rb +166 -0
- data/lib/pangea/resources/aws_media_live_input/types/helpers.rb +100 -0
- data/lib/pangea/resources/aws_media_live_input/types/validation.rb +86 -0
- data/lib/pangea/resources/aws_media_live_input/types.rb +121 -0
- data/lib/pangea/resources/aws_media_package_channel/resource.rb +71 -0
- data/lib/pangea/resources/aws_media_package_channel/types.rb +105 -0
- data/lib/pangea/resources/aws_media_package_origin_endpoint/resource.rb +187 -0
- data/lib/pangea/resources/aws_media_package_origin_endpoint/types.rb +195 -0
- data/lib/pangea/resources/aws_media_store_container/resource.rb +57 -0
- data/lib/pangea/resources/aws_media_store_container/types.rb +53 -0
- data/lib/pangea/resources/aws_memorydb_acl/resource.rb +66 -0
- data/lib/pangea/resources/aws_memorydb_acl/types.rb +47 -0
- data/lib/pangea/resources/aws_memorydb_cluster/resource.rb +89 -0
- data/lib/pangea/resources/aws_memorydb_cluster/types.rb +67 -0
- data/lib/pangea/resources/aws_memorydb_cluster_endpoint/resource.rb +65 -0
- data/lib/pangea/resources/aws_memorydb_cluster_endpoint/types.rb +46 -0
- data/lib/pangea/resources/aws_memorydb_multi_region_cluster/resource.rb +71 -0
- data/lib/pangea/resources/aws_memorydb_multi_region_cluster/types.rb +51 -0
- data/lib/pangea/resources/aws_memorydb_parameter_group/resource.rb +67 -0
- data/lib/pangea/resources/aws_memorydb_parameter_group/types.rb +49 -0
- data/lib/pangea/resources/aws_memorydb_snapshot/resource.rb +69 -0
- data/lib/pangea/resources/aws_memorydb_snapshot/types.rb +49 -0
- data/lib/pangea/resources/aws_memorydb_subnet_group/resource.rb +67 -0
- data/lib/pangea/resources/aws_memorydb_subnet_group/types.rb +48 -0
- data/lib/pangea/resources/aws_memorydb_user/resource.rb +67 -0
- data/lib/pangea/resources/aws_memorydb_user/types.rb +48 -0
- data/lib/pangea/resources/aws_minimal/requires/compute_network_resources.rb +77 -0
- data/lib/pangea/resources/aws_minimal/requires/database_resources.rb +76 -0
- data/lib/pangea/resources/aws_minimal/requires/extended_services.rb +74 -0
- data/lib/pangea/resources/aws_minimal/requires/service_modules.rb +60 -0
- data/lib/pangea/resources/aws_mobile_analytics_app/resource.rb +74 -0
- data/lib/pangea/resources/aws_mobile_analytics_app/types.rb +29 -0
- data/lib/pangea/resources/aws_mq_broker/resource.rb +154 -0
- data/lib/pangea/resources/aws_mq_broker/types.rb +182 -0
- data/lib/pangea/resources/aws_mq_configuration/resource.rb +72 -0
- data/lib/pangea/resources/aws_mq_configuration/types.rb +94 -0
- data/lib/pangea/resources/aws_nat_gateway/resource.rb +94 -0
- data/lib/pangea/resources/aws_nat_gateway/types.rb +84 -0
- data/lib/pangea/resources/aws_neptune_cluster/resource.rb +94 -0
- data/lib/pangea/resources/aws_neptune_cluster/types.rb +68 -0
- data/lib/pangea/resources/aws_neptune_cluster_endpoint/resource.rb +67 -0
- data/lib/pangea/resources/aws_neptune_cluster_endpoint/types.rb +48 -0
- data/lib/pangea/resources/aws_neptune_cluster_instance/resource.rb +81 -0
- data/lib/pangea/resources/aws_neptune_cluster_instance/types.rb +56 -0
- data/lib/pangea/resources/aws_neptune_cluster_parameter_group/resource.rb +67 -0
- data/lib/pangea/resources/aws_neptune_cluster_parameter_group/types.rb +49 -0
- data/lib/pangea/resources/aws_neptune_cluster_snapshot/resource.rb +74 -0
- data/lib/pangea/resources/aws_neptune_cluster_snapshot/types.rb +47 -0
- data/lib/pangea/resources/aws_neptune_event_subscription/resource.rb +70 -0
- data/lib/pangea/resources/aws_neptune_event_subscription/types.rb +51 -0
- data/lib/pangea/resources/aws_neptune_parameter_group/resource.rb +67 -0
- data/lib/pangea/resources/aws_neptune_parameter_group/types.rb +49 -0
- data/lib/pangea/resources/aws_neptune_subnet_group/resource.rb +66 -0
- data/lib/pangea/resources/aws_neptune_subnet_group/types.rb +48 -0
- data/lib/pangea/resources/aws_network_acl/resource.rb +73 -0
- data/lib/pangea/resources/aws_network_acl/types.rb +145 -0
- data/lib/pangea/resources/aws_network_acl_rule/resource.rb +88 -0
- data/lib/pangea/resources/aws_network_acl_rule/types.rb +156 -0
- data/lib/pangea/resources/aws_network_interface/resource.rb +117 -0
- data/lib/pangea/resources/aws_network_interface/types.rb +106 -0
- data/lib/pangea/resources/aws_organizations_account/resource.rb +66 -0
- data/lib/pangea/resources/aws_organizations_account/types.rb +84 -0
- data/lib/pangea/resources/aws_organizations_delegated_administrator/resource.rb +79 -0
- data/lib/pangea/resources/aws_organizations_organization/resource.rb +57 -0
- data/lib/pangea/resources/aws_organizations_organization/types.rb +76 -0
- data/lib/pangea/resources/aws_organizations_resource_policy/resource.rb +96 -0
- data/lib/pangea/resources/aws_outposts/outpost.rb +64 -0
- data/lib/pangea/resources/aws_outposts/resources.rb +173 -0
- data/lib/pangea/resources/aws_outposts/site.rb +75 -0
- data/lib/pangea/resources/aws_pinpoint_app/resource.rb +81 -0
- data/lib/pangea/resources/aws_pinpoint_app/types.rb +87 -0
- data/lib/pangea/resources/aws_placement_group/resource.rb +63 -0
- data/lib/pangea/resources/aws_placement_group/types.rb +44 -0
- data/lib/pangea/resources/aws_proxy_protocol_policy/resource.rb +63 -0
- data/lib/pangea/resources/aws_proxy_protocol_policy/types.rb +44 -0
- data/lib/pangea/resources/aws_qldb_ledger/resource.rb +86 -0
- data/lib/pangea/resources/aws_qldb_ledger/types.rb +169 -0
- data/lib/pangea/resources/aws_qldb_stream/resource.rb +98 -0
- data/lib/pangea/resources/aws_qldb_stream/types/stream_helpers.rb +134 -0
- data/lib/pangea/resources/aws_qldb_stream/types.rb +114 -0
- data/lib/pangea/resources/aws_ram_invitation_accepter/resource.rb +68 -0
- data/lib/pangea/resources/aws_ram_invitation_accepter/types.rb +46 -0
- data/lib/pangea/resources/aws_ram_managed_permission/resource.rb +71 -0
- data/lib/pangea/resources/aws_ram_managed_permission/types.rb +47 -0
- data/lib/pangea/resources/aws_ram_permission/resource.rb +71 -0
- data/lib/pangea/resources/aws_ram_permission/types.rb +48 -0
- data/lib/pangea/resources/aws_ram_permission_association/resource.rb +65 -0
- data/lib/pangea/resources/aws_ram_permission_association/types.rb +48 -0
- data/lib/pangea/resources/aws_ram_principal_association/resource.rb +64 -0
- data/lib/pangea/resources/aws_ram_principal_association/types.rb +47 -0
- data/lib/pangea/resources/aws_ram_resource_association/resource.rb +64 -0
- data/lib/pangea/resources/aws_ram_resource_association/types.rb +47 -0
- data/lib/pangea/resources/aws_ram_resource_share/resource.rb +67 -0
- data/lib/pangea/resources/aws_ram_resource_share/types.rb +48 -0
- data/lib/pangea/resources/aws_ram_resource_share_accepter/resource.rb +67 -0
- data/lib/pangea/resources/aws_ram_resource_share_accepter/types.rb +46 -0
- data/lib/pangea/resources/aws_ram_resource_share_invitation/resource.rb +69 -0
- data/lib/pangea/resources/aws_ram_resource_share_invitation/types.rb +47 -0
- data/lib/pangea/resources/aws_ram_sharing_with_organization/resource.rb +63 -0
- data/lib/pangea/resources/aws_ram_sharing_with_organization/types.rb +46 -0
- data/lib/pangea/resources/aws_rds_cluster/resource.rb +186 -0
- data/lib/pangea/resources/aws_rds_cluster/types/attributes.rb +84 -0
- data/lib/pangea/resources/aws_rds_cluster/types/configs.rb +44 -0
- data/lib/pangea/resources/aws_rds_cluster/types/nested_types.rb +45 -0
- data/lib/pangea/resources/aws_rds_cluster/types/validation.rb +26 -0
- data/lib/pangea/resources/aws_rds_cluster/types.rb +9 -0
- data/lib/pangea/resources/aws_rds_cluster_endpoint/resource.rb +93 -0
- data/lib/pangea/resources/aws_rds_cluster_endpoint/types/configs.rb +97 -0
- data/lib/pangea/resources/aws_rds_cluster_endpoint/types/members.rb +36 -0
- data/lib/pangea/resources/aws_rds_cluster_endpoint/types.rb +165 -0
- data/lib/pangea/resources/aws_rds_cluster_endpoint/types.rbs +59 -0
- data/lib/pangea/resources/aws_rds_cluster_instance/resource.rb +140 -0
- data/lib/pangea/resources/aws_rds_cluster_instance/types/attributes.rb +59 -0
- data/lib/pangea/resources/aws_rds_cluster_instance/types/configs.rb +58 -0
- data/lib/pangea/resources/aws_rds_cluster_instance/types/instance_methods.rb +106 -0
- data/lib/pangea/resources/aws_rds_cluster_instance/types.rb +18 -0
- data/lib/pangea/resources/aws_rds_cluster_parameter_group/resource.rb +93 -0
- data/lib/pangea/resources/aws_rds_cluster_parameter_group/types/attributes.rb +99 -0
- data/lib/pangea/resources/aws_rds_cluster_parameter_group/types/configs.rb +102 -0
- data/lib/pangea/resources/aws_rds_cluster_parameter_group/types/parameter.rb +40 -0
- data/lib/pangea/resources/aws_rds_cluster_parameter_group/types.rb +20 -0
- data/lib/pangea/resources/aws_rds_cluster_parameter_group/types.rbs +65 -0
- data/lib/pangea/resources/aws_rds_global_cluster/resource.rb +120 -0
- data/lib/pangea/resources/aws_rds_global_cluster/types/attributes.rb +90 -0
- data/lib/pangea/resources/aws_rds_global_cluster/types/backup_config.rb +52 -0
- data/lib/pangea/resources/aws_rds_global_cluster/types/configs.rb +47 -0
- data/lib/pangea/resources/aws_rds_global_cluster/types.rb +20 -0
- data/lib/pangea/resources/aws_rds_global_cluster/types.rbs +84 -0
- data/lib/pangea/resources/aws_rds_proxy/resource.rb +110 -0
- data/lib/pangea/resources/aws_rds_proxy/types/attributes.rb +73 -0
- data/lib/pangea/resources/aws_rds_proxy/types/configs.rb +43 -0
- data/lib/pangea/resources/aws_rds_proxy/types/nested_types.rb +61 -0
- data/lib/pangea/resources/aws_rds_proxy/types.rb +21 -0
- data/lib/pangea/resources/aws_rds_proxy_default_target_group/resource.rb +69 -0
- data/lib/pangea/resources/aws_rds_proxy_default_target_group/types.rb +119 -0
- data/lib/pangea/resources/aws_rds_proxy_target/resource.rb +71 -0
- data/lib/pangea/resources/aws_rds_proxy_target/types.rb +104 -0
- data/lib/pangea/resources/aws_redshift_cluster/resource.rb +148 -0
- data/lib/pangea/resources/aws_redshift_cluster/types/capacity_calculator.rb +88 -0
- data/lib/pangea/resources/aws_redshift_cluster/types/cost_estimator.rb +66 -0
- data/lib/pangea/resources/aws_redshift_cluster/types/feature_checks.rb +46 -0
- data/lib/pangea/resources/aws_redshift_cluster/types/validators.rb +73 -0
- data/lib/pangea/resources/aws_redshift_cluster/types/workload_parameters.rb +67 -0
- data/lib/pangea/resources/aws_redshift_cluster/types.rb +151 -0
- data/lib/pangea/resources/aws_redshift_cluster/types.rbs +65 -0
- data/lib/pangea/resources/aws_redshift_parameter_group/resource.rb +84 -0
- data/lib/pangea/resources/aws_redshift_parameter_group/types/class_methods.rb +114 -0
- data/lib/pangea/resources/aws_redshift_parameter_group/types/instance_methods.rb +88 -0
- data/lib/pangea/resources/aws_redshift_parameter_group/types/validation.rb +53 -0
- data/lib/pangea/resources/aws_redshift_parameter_group/types.rb +61 -0
- data/lib/pangea/resources/aws_redshift_parameter_group/types.rbs +42 -0
- data/lib/pangea/resources/aws_redshift_snapshot_schedule/resource.rb +78 -0
- data/lib/pangea/resources/aws_redshift_snapshot_schedule/types/attributes.rb +46 -0
- data/lib/pangea/resources/aws_redshift_snapshot_schedule/types/instance_methods.rb +92 -0
- data/lib/pangea/resources/aws_redshift_snapshot_schedule/types/templates.rb +53 -0
- data/lib/pangea/resources/aws_redshift_snapshot_schedule/types/validation.rb +71 -0
- data/lib/pangea/resources/aws_redshift_snapshot_schedule/types.rb +32 -0
- data/lib/pangea/resources/aws_redshift_snapshot_schedule/types.rbs +41 -0
- data/lib/pangea/resources/aws_redshift_subnet_group/resource.rb +74 -0
- data/lib/pangea/resources/aws_redshift_subnet_group/types.rb +140 -0
- data/lib/pangea/resources/aws_redshift_subnet_group/types.rbs +33 -0
- data/lib/pangea/resources/aws_resource_explorer_index/resource.rb +78 -0
- data/lib/pangea/resources/aws_resource_explorer_view/resource.rb +123 -0
- data/lib/pangea/resources/aws_resourcegroups_group/resource.rb +164 -0
- data/lib/pangea/resources/aws_resources/analytics.rb +22 -0
- data/lib/pangea/resources/aws_resources/compute.rb +31 -0
- data/lib/pangea/resources/aws_resources/core.rb +35 -0
- data/lib/pangea/resources/aws_resources/database.rb +27 -0
- data/lib/pangea/resources/aws_resources/devops.rb +19 -0
- data/lib/pangea/resources/aws_resources/governance.rb +20 -0
- data/lib/pangea/resources/aws_resources/integration.rb +24 -0
- data/lib/pangea/resources/aws_resources/management.rb +33 -0
- data/lib/pangea/resources/aws_resources/ml.rb +15 -0
- data/lib/pangea/resources/aws_resources/security.rb +30 -0
- data/lib/pangea/resources/aws_resources/specialty.rb +67 -0
- data/lib/pangea/resources/aws_resources/storage.rb +23 -0
- data/lib/pangea/resources/aws_route/resource.rb +83 -0
- data/lib/pangea/resources/aws_route/types.rb +121 -0
- data/lib/pangea/resources/aws_route53_delegation_set/resource.rb +70 -0
- data/lib/pangea/resources/aws_route53_delegation_set/types.rb +131 -0
- data/lib/pangea/resources/aws_route53_health_check/resource.rb +129 -0
- data/lib/pangea/resources/aws_route53_health_check/types/attributes.rb +209 -0
- data/lib/pangea/resources/aws_route53_health_check/types/configs.rb +84 -0
- data/lib/pangea/resources/aws_route53_health_check/types.rb +18 -0
- data/lib/pangea/resources/aws_route53_query_log/resource.rb +76 -0
- data/lib/pangea/resources/aws_route53_query_log/types.rb +185 -0
- data/lib/pangea/resources/aws_route53_record/resource.rb +135 -0
- data/lib/pangea/resources/aws_route53_record/types/attributes.rb +155 -0
- data/lib/pangea/resources/aws_route53_record/types/configs.rb +124 -0
- data/lib/pangea/resources/aws_route53_record/types/instance_methods.rb +80 -0
- data/lib/pangea/resources/aws_route53_record/types/validation.rb +94 -0
- data/lib/pangea/resources/aws_route53_record/types.rb +30 -0
- data/lib/pangea/resources/aws_route53_zone/resource.rb +96 -0
- data/lib/pangea/resources/aws_route53_zone/types/attributes.rb +89 -0
- data/lib/pangea/resources/aws_route53_zone/types/configs.rb +73 -0
- data/lib/pangea/resources/aws_route53_zone/types/instance_methods.rb +90 -0
- data/lib/pangea/resources/aws_route53_zone/types/validation.rb +42 -0
- data/lib/pangea/resources/aws_route53_zone/types.rb +30 -0
- data/lib/pangea/resources/aws_route_table/resource.rb +101 -0
- data/lib/pangea/resources/aws_route_table/types.rb +106 -0
- data/lib/pangea/resources/aws_route_table_association/resource.rb +89 -0
- data/lib/pangea/resources/aws_route_table_association/types.rb +93 -0
- data/lib/pangea/resources/aws_s3_access_point/resource.rb +99 -0
- data/lib/pangea/resources/aws_s3_access_point/types.rb +85 -0
- data/lib/pangea/resources/aws_s3_access_point_policy/resource.rb +66 -0
- data/lib/pangea/resources/aws_s3_access_point_policy/types.rb +62 -0
- data/lib/pangea/resources/aws_s3_bucket/builders/configuration_builder.rb +105 -0
- data/lib/pangea/resources/aws_s3_bucket/builders/lifecycle_builder.rb +101 -0
- data/lib/pangea/resources/aws_s3_bucket/resource.rb +106 -0
- data/lib/pangea/resources/aws_s3_bucket/types/cors_rule.rb +39 -0
- data/lib/pangea/resources/aws_s3_bucket/types/lifecycle_rule.rb +63 -0
- data/lib/pangea/resources/aws_s3_bucket/types/server_side_encryption.rb +51 -0
- data/lib/pangea/resources/aws_s3_bucket/types.rb +187 -0
- data/lib/pangea/resources/aws_s3_bucket_accelerate_configuration/resource.rb +67 -0
- data/lib/pangea/resources/aws_s3_bucket_accelerate_configuration/types.rb +62 -0
- data/lib/pangea/resources/aws_s3_bucket_analytics_configuration/resource.rb +105 -0
- data/lib/pangea/resources/aws_s3_bucket_analytics_configuration/types.rb +112 -0
- data/lib/pangea/resources/aws_s3_bucket_cors_configuration/resource.rb +94 -0
- data/lib/pangea/resources/aws_s3_bucket_cors_configuration/types.rb +167 -0
- data/lib/pangea/resources/aws_s3_bucket_encryption/resource.rb +75 -0
- data/lib/pangea/resources/aws_s3_bucket_encryption/types.rb +112 -0
- data/lib/pangea/resources/aws_s3_bucket_inventory/resource.rb +132 -0
- data/lib/pangea/resources/aws_s3_bucket_inventory/types/helpers.rb +113 -0
- data/lib/pangea/resources/aws_s3_bucket_inventory/types.rb +156 -0
- data/lib/pangea/resources/aws_s3_bucket_lifecycle_configuration/resource.rb +155 -0
- data/lib/pangea/resources/aws_s3_bucket_lifecycle_configuration/types/attributes.rb +55 -0
- data/lib/pangea/resources/aws_s3_bucket_lifecycle_configuration/types/expiration.rb +41 -0
- data/lib/pangea/resources/aws_s3_bucket_lifecycle_configuration/types/filter.rb +54 -0
- data/lib/pangea/resources/aws_s3_bucket_lifecycle_configuration/types/rule.rb +51 -0
- data/lib/pangea/resources/aws_s3_bucket_lifecycle_configuration/types/transition.rb +53 -0
- data/lib/pangea/resources/aws_s3_bucket_lifecycle_configuration/types.rb +26 -0
- data/lib/pangea/resources/aws_s3_bucket_notification/resource.rb +119 -0
- data/lib/pangea/resources/aws_s3_bucket_notification/types/helpers.rb +76 -0
- data/lib/pangea/resources/aws_s3_bucket_notification/types/notification_config.rb +74 -0
- data/lib/pangea/resources/aws_s3_bucket_notification/types/s3_events.rb +54 -0
- data/lib/pangea/resources/aws_s3_bucket_notification/types/validators.rb +64 -0
- data/lib/pangea/resources/aws_s3_bucket_notification/types.rb +62 -0
- data/lib/pangea/resources/aws_s3_bucket_object_lock_configuration/resource.rb +97 -0
- data/lib/pangea/resources/aws_s3_bucket_object_lock_configuration/types/instance_methods.rb +129 -0
- data/lib/pangea/resources/aws_s3_bucket_object_lock_configuration/types/validation.rb +24 -0
- data/lib/pangea/resources/aws_s3_bucket_object_lock_configuration/types.rb +78 -0
- data/lib/pangea/resources/aws_s3_bucket_policy/resource.rb +63 -0
- data/lib/pangea/resources/aws_s3_bucket_policy/types.rb +91 -0
- data/lib/pangea/resources/aws_s3_bucket_public_access_block/resource.rb +74 -0
- data/lib/pangea/resources/aws_s3_bucket_public_access_block/types.rb +90 -0
- data/lib/pangea/resources/aws_s3_bucket_replication_configuration/resource.rb +198 -0
- data/lib/pangea/resources/aws_s3_bucket_replication_configuration/types/destination.rb +87 -0
- data/lib/pangea/resources/aws_s3_bucket_replication_configuration/types/filter.rb +52 -0
- data/lib/pangea/resources/aws_s3_bucket_replication_configuration/types/helpers.rb +108 -0
- data/lib/pangea/resources/aws_s3_bucket_replication_configuration/types/rule.rb +81 -0
- data/lib/pangea/resources/aws_s3_bucket_replication_configuration/types/validators.rb +117 -0
- data/lib/pangea/resources/aws_s3_bucket_replication_configuration/types.rb +54 -0
- data/lib/pangea/resources/aws_s3_bucket_versioning/resource.rb +69 -0
- data/lib/pangea/resources/aws_s3_bucket_versioning/types.rb +75 -0
- data/lib/pangea/resources/aws_s3_bucket_website_configuration/resource.rb +120 -0
- data/lib/pangea/resources/aws_s3_bucket_website_configuration/types/attributes.rb +57 -0
- data/lib/pangea/resources/aws_s3_bucket_website_configuration/types/documents.rb +61 -0
- data/lib/pangea/resources/aws_s3_bucket_website_configuration/types/redirect.rb +41 -0
- data/lib/pangea/resources/aws_s3_bucket_website_configuration/types/routing_rules.rb +99 -0
- data/lib/pangea/resources/aws_s3_bucket_website_configuration/types.rb +19 -0
- data/lib/pangea/resources/aws_s3_multi_region_access_point/resource.rb +102 -0
- data/lib/pangea/resources/aws_s3_multi_region_access_point/types.rb +98 -0
- data/lib/pangea/resources/aws_s3_object/resource.rb +128 -0
- data/lib/pangea/resources/aws_s3_object/types/attributes.rb +108 -0
- data/lib/pangea/resources/aws_s3_object/types/instance_methods.rb +113 -0
- data/lib/pangea/resources/aws_s3_object/types/validation.rb +57 -0
- data/lib/pangea/resources/aws_s3_object/types.rb +21 -0
- data/lib/pangea/resources/aws_s3_object_lambda_access_point/resource.rb +94 -0
- data/lib/pangea/resources/aws_s3_object_lambda_access_point/types.rb +101 -0
- data/lib/pangea/resources/aws_sagemaker_domain/resource.rb +158 -0
- data/lib/pangea/resources/aws_sagemaker_domain/types/app_settings_types.rb +91 -0
- data/lib/pangea/resources/aws_sagemaker_domain/types/base_types.rb +70 -0
- data/lib/pangea/resources/aws_sagemaker_domain/types/user_settings_types.rb +45 -0
- data/lib/pangea/resources/aws_sagemaker_domain/types.rb +178 -0
- data/lib/pangea/resources/aws_sagemaker_endpoint/reference_attributes.rb +119 -0
- data/lib/pangea/resources/aws_sagemaker_endpoint/resource.rb +156 -0
- data/lib/pangea/resources/aws_sagemaker_endpoint/types/computed_properties.rb +100 -0
- data/lib/pangea/resources/aws_sagemaker_endpoint/types/deployment_analysis.rb +108 -0
- data/lib/pangea/resources/aws_sagemaker_endpoint/types/deployment_config.rb +54 -0
- data/lib/pangea/resources/aws_sagemaker_endpoint/types.rb +122 -0
- data/lib/pangea/resources/aws_sagemaker_endpoint_configuration/reference_attributes.rb +130 -0
- data/lib/pangea/resources/aws_sagemaker_endpoint_configuration/resource.rb +190 -0
- data/lib/pangea/resources/aws_sagemaker_endpoint_configuration/types/attributes.rb +155 -0
- data/lib/pangea/resources/aws_sagemaker_endpoint_configuration/types/variant_types.rb +73 -0
- data/lib/pangea/resources/aws_sagemaker_endpoint_configuration/types.rb +20 -0
- data/lib/pangea/resources/aws_sagemaker_feature_group/resource.rb +62 -0
- data/lib/pangea/resources/aws_sagemaker_feature_group/types.rb +149 -0
- data/lib/pangea/resources/aws_sagemaker_model/resource.rb +187 -0
- data/lib/pangea/resources/aws_sagemaker_model/types/attributes.rb +62 -0
- data/lib/pangea/resources/aws_sagemaker_model/types/helpers.rb +74 -0
- data/lib/pangea/resources/aws_sagemaker_model/types/validators.rb +13 -0
- data/lib/pangea/resources/aws_sagemaker_model/types.rb +7 -0
- data/lib/pangea/resources/aws_sagemaker_notebook_instance/resource.rb +137 -0
- data/lib/pangea/resources/aws_sagemaker_notebook_instance/types/helpers.rb +73 -0
- data/lib/pangea/resources/aws_sagemaker_notebook_instance/types/pricing.rb +118 -0
- data/lib/pangea/resources/aws_sagemaker_notebook_instance/types/security.rb +81 -0
- data/lib/pangea/resources/aws_sagemaker_notebook_instance/types/validators.rb +97 -0
- data/lib/pangea/resources/aws_sagemaker_notebook_instance/types.rb +104 -0
- data/lib/pangea/resources/aws_sagemaker_pipeline/resource.rb +59 -0
- data/lib/pangea/resources/aws_sagemaker_pipeline/types.rb +77 -0
- data/lib/pangea/resources/aws_sagemaker_processing_job/resource.rb +59 -0
- data/lib/pangea/resources/aws_sagemaker_processing_job/types.rb +139 -0
- data/lib/pangea/resources/aws_sagemaker_training_job/resource.rb +67 -0
- data/lib/pangea/resources/aws_sagemaker_training_job/types/attributes.rb +90 -0
- data/lib/pangea/resources/aws_sagemaker_training_job/types/configs.rb +38 -0
- data/lib/pangea/resources/aws_sagemaker_training_job/types/enums.rb +25 -0
- data/lib/pangea/resources/aws_sagemaker_training_job/types/validation.rb +70 -0
- data/lib/pangea/resources/aws_sagemaker_training_job/types.rb +10 -0
- data/lib/pangea/resources/aws_sagemaker_user_profile/resource.rb +196 -0
- data/lib/pangea/resources/aws_sagemaker_user_profile/types/attributes.rb +68 -0
- data/lib/pangea/resources/aws_sagemaker_user_profile/types/helpers.rb +68 -0
- data/lib/pangea/resources/aws_sagemaker_user_profile/types/validators.rb +13 -0
- data/lib/pangea/resources/aws_sagemaker_user_profile/types.rb +7 -0
- data/lib/pangea/resources/aws_secretsmanager_secret/resource.rb +108 -0
- data/lib/pangea/resources/aws_secretsmanager_secret/types.rb +198 -0
- data/lib/pangea/resources/aws_secretsmanager_secret_version/resource.rb +73 -0
- data/lib/pangea/resources/aws_secretsmanager_secret_version/types.rb +101 -0
- data/lib/pangea/resources/aws_security_group/resource.rb +78 -0
- data/lib/pangea/resources/aws_security_group/types.rb +109 -0
- data/lib/pangea/resources/aws_securityhub_account/resource.rb +71 -0
- data/lib/pangea/resources/aws_securityhub_account/types.rb +60 -0
- data/lib/pangea/resources/aws_ses_configuration_set/resource.rb +67 -0
- data/lib/pangea/resources/aws_ses_configuration_set/types.rb +74 -0
- data/lib/pangea/resources/aws_ses_domain_identity/resource.rb +54 -0
- data/lib/pangea/resources/aws_ses_domain_identity/types.rb +60 -0
- data/lib/pangea/resources/aws_ses_email_identity/resource.rb +53 -0
- data/lib/pangea/resources/aws_ses_email_identity/types.rb +72 -0
- data/lib/pangea/resources/aws_sfn_activity/resource.rb +58 -0
- data/lib/pangea/resources/aws_sfn_activity/types.rb +123 -0
- data/lib/pangea/resources/aws_sfn_state_machine/resource.rb +89 -0
- data/lib/pangea/resources/aws_sfn_state_machine/types/attributes.rb +51 -0
- data/lib/pangea/resources/aws_sfn_state_machine/types/builders.rb +87 -0
- data/lib/pangea/resources/aws_sfn_state_machine/types/validators.rb +86 -0
- data/lib/pangea/resources/aws_sfn_state_machine/types.rb +8 -0
- data/lib/pangea/resources/aws_snow_family/datasync.rb +124 -0
- data/lib/pangea/resources/aws_snow_family/snowball.rb +95 -0
- data/lib/pangea/resources/aws_snow_family/snowcone.rb +82 -0
- data/lib/pangea/resources/aws_snow_family/snowmobile.rb +51 -0
- data/lib/pangea/resources/aws_sns_subscription/resource.rb +96 -0
- data/lib/pangea/resources/aws_sns_subscription/types/helpers.rb +73 -0
- data/lib/pangea/resources/aws_sns_subscription/types/validators.rb +144 -0
- data/lib/pangea/resources/aws_sns_subscription/types.rb +53 -0
- data/lib/pangea/resources/aws_sns_topic/resource.rb +123 -0
- data/lib/pangea/resources/aws_sns_topic/types.rb +192 -0
- data/lib/pangea/resources/aws_sqs_queue/resource.rb +111 -0
- data/lib/pangea/resources/aws_sqs_queue/types.rb +168 -0
- data/lib/pangea/resources/aws_sqs_queue_policy/resource.rb +61 -0
- data/lib/pangea/resources/aws_sqs_queue_policy/types.rb +113 -0
- data/lib/pangea/resources/aws_ssm_document/resource.rb +141 -0
- data/lib/pangea/resources/aws_ssm_document/types/attributes.rb +101 -0
- data/lib/pangea/resources/aws_ssm_document/types/configs.rb +56 -0
- data/lib/pangea/resources/aws_ssm_document/types.rb +18 -0
- data/lib/pangea/resources/aws_ssm_document/types.rbs +49 -0
- data/lib/pangea/resources/aws_ssm_maintenance_window/resource.rb +117 -0
- data/lib/pangea/resources/aws_ssm_maintenance_window/types/attributes.rb +188 -0
- data/lib/pangea/resources/aws_ssm_maintenance_window/types/configs.rb +88 -0
- data/lib/pangea/resources/aws_ssm_maintenance_window/types.rb +18 -0
- data/lib/pangea/resources/aws_ssm_maintenance_window/types.rbs +49 -0
- data/lib/pangea/resources/aws_ssm_parameter/resource.rb +95 -0
- data/lib/pangea/resources/aws_ssm_parameter/types/configs.rb +118 -0
- data/lib/pangea/resources/aws_ssm_parameter/types/helpers.rb +101 -0
- data/lib/pangea/resources/aws_ssm_parameter/types/validation.rb +83 -0
- data/lib/pangea/resources/aws_ssm_parameter/types.rb +69 -0
- data/lib/pangea/resources/aws_ssm_parameter/types.rbs +47 -0
- data/lib/pangea/resources/aws_ssm_patch_baseline/resource.rb +146 -0
- data/lib/pangea/resources/aws_ssm_patch_baseline/types/attributes.rb +71 -0
- data/lib/pangea/resources/aws_ssm_patch_baseline/types/configs.rb +94 -0
- data/lib/pangea/resources/aws_ssm_patch_baseline/types/instance_methods.rb +97 -0
- data/lib/pangea/resources/aws_ssm_patch_baseline/types/validation.rb +99 -0
- data/lib/pangea/resources/aws_ssm_patch_baseline/types.rb +19 -0
- data/lib/pangea/resources/aws_ssm_patch_baseline/types.rbs +51 -0
- data/lib/pangea/resources/aws_subnet/resource.rb +69 -0
- data/lib/pangea/resources/aws_subnet/types.rb +81 -0
- data/lib/pangea/resources/aws_sumerian_project/resource.rb +82 -0
- data/lib/pangea/resources/aws_sumerian_project/types.rb +28 -0
- data/lib/pangea/resources/aws_support_app_slack_channel_configuration/resource.rb +111 -0
- data/lib/pangea/resources/aws_support_app_slack_workspace_configuration/resource.rb +70 -0
- data/lib/pangea/resources/aws_timestream_access_policy/resource.rb +65 -0
- data/lib/pangea/resources/aws_timestream_access_policy/types.rb +48 -0
- data/lib/pangea/resources/aws_timestream_batch_load_task/resource.rb +73 -0
- data/lib/pangea/resources/aws_timestream_batch_load_task/types.rb +52 -0
- data/lib/pangea/resources/aws_timestream_database/resource.rb +67 -0
- data/lib/pangea/resources/aws_timestream_database/types.rb +47 -0
- data/lib/pangea/resources/aws_timestream_influx_db_instance/resource.rb +81 -0
- data/lib/pangea/resources/aws_timestream_influx_db_instance/types.rb +59 -0
- data/lib/pangea/resources/aws_timestream_scheduled_query/resource.rb +73 -0
- data/lib/pangea/resources/aws_timestream_scheduled_query/types.rb +54 -0
- data/lib/pangea/resources/aws_timestream_table/resource.rb +69 -0
- data/lib/pangea/resources/aws_timestream_table/types.rb +50 -0
- data/lib/pangea/resources/aws_timestream_table_retention_properties/resource.rb +66 -0
- data/lib/pangea/resources/aws_timestream_table_retention_properties/types.rb +49 -0
- data/lib/pangea/resources/aws_volume_attachment/resource.rb +74 -0
- data/lib/pangea/resources/aws_volume_attachment/types.rb +174 -0
- data/lib/pangea/resources/aws_vpc/resource.rb +80 -0
- data/lib/pangea/resources/aws_vpc/types.rb +93 -0
- data/lib/pangea/resources/aws_vpc_dhcp_options_association/resource.rb +63 -0
- data/lib/pangea/resources/aws_vpc_dhcp_options_association/types.rb +44 -0
- data/lib/pangea/resources/aws_vpc_endpoint/resource.rb +147 -0
- data/lib/pangea/resources/aws_vpc_endpoint/types/configs.rb +96 -0
- data/lib/pangea/resources/aws_vpc_endpoint/types.rb +193 -0
- data/lib/pangea/resources/aws_vpc_endpoint_connection_accepter/resource.rb +63 -0
- data/lib/pangea/resources/aws_vpc_endpoint_connection_accepter/types.rb +44 -0
- data/lib/pangea/resources/aws_vpc_endpoint_connection_notification/resource.rb +70 -0
- data/lib/pangea/resources/aws_vpc_endpoint_connection_notification/types.rb +48 -0
- data/lib/pangea/resources/aws_vpc_endpoint_route_table_association/resource.rb +63 -0
- data/lib/pangea/resources/aws_vpc_endpoint_route_table_association/types.rb +44 -0
- data/lib/pangea/resources/aws_vpc_endpoint_service/resource.rb +123 -0
- data/lib/pangea/resources/aws_vpc_endpoint_service/types.rb +142 -0
- data/lib/pangea/resources/aws_vpc_endpoint_service_allowed_principal/resource.rb +63 -0
- data/lib/pangea/resources/aws_vpc_endpoint_service_allowed_principal/types.rb +44 -0
- data/lib/pangea/resources/aws_vpc_endpoint_subnet_association/resource.rb +63 -0
- data/lib/pangea/resources/aws_vpc_endpoint_subnet_association/types.rb +44 -0
- data/lib/pangea/resources/aws_vpc_network_performance_metric_subscription/resource.rb +63 -0
- data/lib/pangea/resources/aws_vpc_network_performance_metric_subscription/types.rb +44 -0
- data/lib/pangea/resources/aws_vpc_peering_connection/resource.rb +127 -0
- data/lib/pangea/resources/aws_vpc_peering_connection/types/configs.rb +124 -0
- data/lib/pangea/resources/aws_vpc_peering_connection/types.rb +160 -0
- data/lib/pangea/resources/aws_vpc_peering_connection_accepter/resource.rb +63 -0
- data/lib/pangea/resources/aws_vpc_peering_connection_accepter/types.rb +44 -0
- data/lib/pangea/resources/aws_vpc_peering_connection_options/resource.rb +63 -0
- data/lib/pangea/resources/aws_vpc_peering_connection_options/types.rb +44 -0
- data/lib/pangea/resources/aws_vpc_security_group_egress_rule/resource.rb +63 -0
- data/lib/pangea/resources/aws_vpc_security_group_egress_rule/types.rb +44 -0
- data/lib/pangea/resources/aws_vpc_security_group_ingress_rule/resource.rb +63 -0
- data/lib/pangea/resources/aws_vpc_security_group_ingress_rule/types.rb +44 -0
- data/lib/pangea/resources/aws_vpn_connection/resource.rb +115 -0
- data/lib/pangea/resources/aws_vpn_connection/types.rb +125 -0
- data/lib/pangea/resources/aws_vpn_gateway/resource.rb +88 -0
- data/lib/pangea/resources/aws_vpn_gateway/types.rb +85 -0
- data/lib/pangea/resources/aws_wafv2_ip_set/resource.rb +80 -0
- data/lib/pangea/resources/aws_wafv2_ip_set/types.rb +140 -0
- data/lib/pangea/resources/aws_wafv2_regex_pattern_set/resource.rb +86 -0
- data/lib/pangea/resources/aws_wafv2_regex_pattern_set/types/configs.rb +116 -0
- data/lib/pangea/resources/aws_wafv2_regex_pattern_set/types/helpers.rb +106 -0
- data/lib/pangea/resources/aws_wafv2_regex_pattern_set/types.rb +114 -0
- data/lib/pangea/resources/aws_wafv2_rule_group/resource/actions.rb +83 -0
- data/lib/pangea/resources/aws_wafv2_rule_group/resource/dsl_builder.rb +107 -0
- data/lib/pangea/resources/aws_wafv2_rule_group/resource/field_to_match.rb +45 -0
- data/lib/pangea/resources/aws_wafv2_rule_group/resource/statements.rb +137 -0
- data/lib/pangea/resources/aws_wafv2_rule_group/resource.rb +174 -0
- data/lib/pangea/resources/aws_wafv2_rule_group/types/actions.rb +79 -0
- data/lib/pangea/resources/aws_wafv2_rule_group/types/computed.rb +65 -0
- data/lib/pangea/resources/aws_wafv2_rule_group/types/rule_schema.rb +54 -0
- data/lib/pangea/resources/aws_wafv2_rule_group/types/schemas.rb +74 -0
- data/lib/pangea/resources/aws_wafv2_rule_group/types/validators.rb +121 -0
- data/lib/pangea/resources/aws_wafv2_rule_group/types.rb +53 -0
- data/lib/pangea/resources/aws_wafv2_web_acl/resource/dsl_builder/default_action.rb +80 -0
- data/lib/pangea/resources/aws_wafv2_web_acl/resource/dsl_builder/field_to_match.rb +71 -0
- data/lib/pangea/resources/aws_wafv2_web_acl/resource/dsl_builder/rules.rb +111 -0
- data/lib/pangea/resources/aws_wafv2_web_acl/resource/dsl_builder/statements.rb +181 -0
- data/lib/pangea/resources/aws_wafv2_web_acl/resource/dsl_builder.rb +42 -0
- data/lib/pangea/resources/aws_wafv2_web_acl/resource.rb +94 -0
- data/lib/pangea/resources/aws_wafv2_web_acl/types/default_action.rb +57 -0
- data/lib/pangea/resources/aws_wafv2_web_acl/types/rule.rb +60 -0
- data/lib/pangea/resources/aws_wafv2_web_acl/types/rule_action.rb +76 -0
- data/lib/pangea/resources/aws_wafv2_web_acl/types/statement.rb +176 -0
- data/lib/pangea/resources/aws_wafv2_web_acl/types/visibility_config.rb +35 -0
- data/lib/pangea/resources/aws_wafv2_web_acl/types/web_acl_attributes.rb +158 -0
- data/lib/pangea/resources/aws_wafv2_web_acl/types.rb +26 -0
- data/lib/pangea/resources/aws_wavelength/application_deployment.rb +78 -0
- data/lib/pangea/resources/aws_wavelength/carrier_gateway.rb +62 -0
- data/lib/pangea/resources/aws_wavelength/deployment.rb +68 -0
- data/lib/pangea/resources/aws_wavelength/edge_location.rb +66 -0
- data/lib/pangea/resources/aws_wavelength/network_interface.rb +77 -0
- data/lib/pangea/resources/aws_wavelength/workload.rb +74 -0
- data/lib/pangea/resources/aws_workspaces_bundle/resource.rb +97 -0
- data/lib/pangea/resources/aws_workspaces_bundle/types/compute.rb +68 -0
- data/lib/pangea/resources/aws_workspaces_bundle/types/storage.rb +71 -0
- data/lib/pangea/resources/aws_workspaces_bundle/types.rb +92 -0
- data/lib/pangea/resources/aws_workspaces_directory/resource.rb +130 -0
- data/lib/pangea/resources/aws_workspaces_directory/types/self_service_permissions_type.rb +54 -0
- data/lib/pangea/resources/aws_workspaces_directory/types/workspace_access_properties_type.rb +68 -0
- data/lib/pangea/resources/aws_workspaces_directory/types/workspace_creation_properties_type.rb +61 -0
- data/lib/pangea/resources/aws_workspaces_directory/types.rb +82 -0
- data/lib/pangea/resources/aws_workspaces_ip_group/resource.rb +90 -0
- data/lib/pangea/resources/aws_workspaces_ip_group/types.rb +149 -0
- data/lib/pangea/resources/aws_workspaces_workspace/resource.rb +105 -0
- data/lib/pangea/resources/aws_workspaces_workspace/types.rb +180 -0
- data/lib/pangea/resources/aws_xray_encryption_config/resource.rb +77 -0
- data/lib/pangea/resources/aws_xray_group/resource.rb +110 -0
- data/lib/pangea/resources/aws_xray_sampling_rule/resource.rb +143 -0
- data/lib/pangea/resources/reference/instance_computed_attributes.rb +78 -0
- data/lib/pangea/resources/reference/subnet_computed_attributes.rb +60 -0
- data/lib/pangea/resources/reference/vpc_computed_attributes.rb +89 -0
- data/lib/pangea/resources/types/aws/compute.rb +98 -0
- data/lib/pangea/resources/types/aws/core.rb +138 -0
- data/lib/pangea/resources/types/aws/database.rb +33 -0
- data/lib/pangea/resources/types/aws/iot.rb +179 -0
- data/lib/pangea/resources/types/aws/iot_analytics.rb +57 -0
- data/lib/pangea/resources/types/aws/load_balancer.rb +97 -0
- data/lib/pangea/resources/types/aws/monitoring.rb +52 -0
- data/lib/pangea/resources/types/aws/networking.rb +74 -0
- data/lib/pangea/resources/types/aws/security.rb +130 -0
- data/lib/pangea/resources/types/aws/storage.rb +60 -0
- data/lib/pangea/resources/types/core.rb +6 -0
- data/lib/pangea-aws/version.rb +5 -0
- data/lib/pangea-aws.rb +465 -0
- data/pangea-aws.gemspec +33 -0
- metadata +1564 -0
|
@@ -0,0 +1,46 @@
|
|
|
1
|
+
# frozen_string_literal: true
|
|
2
|
+
# Copyright 2025 The Pangea Authors
|
|
3
|
+
#
|
|
4
|
+
# Licensed under the Apache License, Version 2.0 (the "License");
|
|
5
|
+
# you may not use this file except in compliance with the License.
|
|
6
|
+
# You may obtain a copy of the License at
|
|
7
|
+
#
|
|
8
|
+
# http://www.apache.org/licenses/LICENSE-2.0
|
|
9
|
+
#
|
|
10
|
+
# Unless required by applicable law or agreed to in writing, software
|
|
11
|
+
# distributed under the License is distributed on an "AS IS" BASIS,
|
|
12
|
+
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
13
|
+
# See the License for the specific language governing permissions and
|
|
14
|
+
# limitations under the License.
|
|
15
|
+
|
|
16
|
+
require 'pangea/resources/types'
|
|
17
|
+
|
|
18
|
+
module Pangea
|
|
19
|
+
module Resources
|
|
20
|
+
module AWS
|
|
21
|
+
module Types
|
|
22
|
+
# Type-safe attributes for AwsRamSharingWithOrganization resources
|
|
23
|
+
# Manages Resource Access Manager (RAM) resource sharing with AWS Organizations.
|
|
24
|
+
class RamSharingWithOrganizationAttributes < Pangea::Resources::BaseAttributes
|
|
25
|
+
attribute? :enable, Resources::Types::Bool.optional
|
|
26
|
+
|
|
27
|
+
# Tags to apply to the resource
|
|
28
|
+
attribute :tags, Resources::Types::AwsTags.default({}.freeze)
|
|
29
|
+
|
|
30
|
+
# Custom validation
|
|
31
|
+
def self.new(attributes = {})
|
|
32
|
+
attrs = super(attributes)
|
|
33
|
+
|
|
34
|
+
|
|
35
|
+
|
|
36
|
+
|
|
37
|
+
attrs
|
|
38
|
+
end
|
|
39
|
+
|
|
40
|
+
# TODO: Add computed properties specific to aws_ram_sharing_with_organization
|
|
41
|
+
|
|
42
|
+
end
|
|
43
|
+
end
|
|
44
|
+
end
|
|
45
|
+
end
|
|
46
|
+
end
|
|
@@ -0,0 +1,186 @@
|
|
|
1
|
+
# frozen_string_literal: true
|
|
2
|
+
# Copyright 2025 The Pangea Authors
|
|
3
|
+
#
|
|
4
|
+
# Licensed under the Apache License, Version 2.0 (the "License");
|
|
5
|
+
# you may not use this file except in compliance with the License.
|
|
6
|
+
# You may obtain a copy of the License at
|
|
7
|
+
#
|
|
8
|
+
# http://www.apache.org/licenses/LICENSE-2.0
|
|
9
|
+
#
|
|
10
|
+
# Unless required by applicable law or agreed to in writing, software
|
|
11
|
+
# distributed under the License is distributed on an "AS IS" BASIS,
|
|
12
|
+
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
13
|
+
# See the License for the specific language governing permissions and
|
|
14
|
+
# limitations under the License.
|
|
15
|
+
|
|
16
|
+
|
|
17
|
+
require 'pangea/resources/base'
|
|
18
|
+
require 'pangea/resources/reference'
|
|
19
|
+
require 'pangea/resources/aws_rds_cluster/types'
|
|
20
|
+
require 'pangea/resource_registry'
|
|
21
|
+
|
|
22
|
+
module Pangea
|
|
23
|
+
module Resources
|
|
24
|
+
module AWS
|
|
25
|
+
# Create an AWS RDS Cluster (Aurora) with type-safe attributes
|
|
26
|
+
#
|
|
27
|
+
# @param name [Symbol] The resource name
|
|
28
|
+
# @param attributes [Hash] RDS cluster attributes
|
|
29
|
+
# @return [ResourceReference] Reference object with outputs and computed properties
|
|
30
|
+
def aws_rds_cluster(name, attributes = {})
|
|
31
|
+
# Validate attributes using dry-struct
|
|
32
|
+
cluster_attrs = Types::RdsClusterAttributes.new(attributes)
|
|
33
|
+
|
|
34
|
+
# Generate terraform resource block via terraform-synthesizer
|
|
35
|
+
resource(:aws_rds_cluster, name) do
|
|
36
|
+
cluster_identifier cluster_attrs.cluster_identifier if cluster_attrs.cluster_identifier
|
|
37
|
+
cluster_identifier_prefix cluster_attrs.cluster_identifier_prefix if cluster_attrs.cluster_identifier_prefix
|
|
38
|
+
|
|
39
|
+
# Engine configuration
|
|
40
|
+
engine cluster_attrs.engine
|
|
41
|
+
engine_version cluster_attrs.engine_version if cluster_attrs.engine_version
|
|
42
|
+
engine_mode cluster_attrs.engine_mode if cluster_attrs.engine_mode != "provisioned"
|
|
43
|
+
|
|
44
|
+
# Database configuration
|
|
45
|
+
database_name cluster_attrs.database_name if cluster_attrs.database_name
|
|
46
|
+
master_username cluster_attrs.master_username if cluster_attrs.master_username
|
|
47
|
+
master_password cluster_attrs.master_password if cluster_attrs.master_password
|
|
48
|
+
manage_master_user_password cluster_attrs.manage_master_user_password if cluster_attrs.manage_master_user_password
|
|
49
|
+
master_user_secret_kms_key_id cluster_attrs.master_user_secret_kms_key_id if cluster_attrs.master_user_secret_kms_key_id
|
|
50
|
+
|
|
51
|
+
# Network configuration
|
|
52
|
+
db_subnet_group_name cluster_attrs.db_subnet_group_name if cluster_attrs.db_subnet_group_name
|
|
53
|
+
vpc_security_group_ids cluster_attrs.vpc_security_group_ids if cluster_attrs.vpc_security_group_ids&.any?
|
|
54
|
+
availability_zones cluster_attrs.availability_zones if cluster_attrs.availability_zones && cluster_attrs.availability_zones&.any?
|
|
55
|
+
db_cluster_parameter_group_name cluster_attrs.db_cluster_parameter_group_name if cluster_attrs.db_cluster_parameter_group_name
|
|
56
|
+
port cluster_attrs.port if cluster_attrs.port
|
|
57
|
+
|
|
58
|
+
# Backup configuration
|
|
59
|
+
backup_retention_period cluster_attrs.backup_retention_period
|
|
60
|
+
preferred_backup_window cluster_attrs.preferred_backup_window if cluster_attrs.preferred_backup_window
|
|
61
|
+
preferred_maintenance_window cluster_attrs.preferred_maintenance_window if cluster_attrs.preferred_maintenance_window
|
|
62
|
+
copy_tags_to_snapshot cluster_attrs.copy_tags_to_snapshot
|
|
63
|
+
|
|
64
|
+
# Storage configuration
|
|
65
|
+
storage_encrypted cluster_attrs.storage_encrypted
|
|
66
|
+
kms_key_id cluster_attrs.kms_key_id if cluster_attrs.kms_key_id
|
|
67
|
+
storage_type cluster_attrs.storage_type if cluster_attrs.storage_type
|
|
68
|
+
allocated_storage cluster_attrs.allocated_storage if cluster_attrs.allocated_storage
|
|
69
|
+
iops cluster_attrs.iops if cluster_attrs.iops
|
|
70
|
+
|
|
71
|
+
# Global cluster
|
|
72
|
+
global_cluster_identifier cluster_attrs.global_cluster_identifier if cluster_attrs.global_cluster_identifier
|
|
73
|
+
|
|
74
|
+
# Serverless v1 scaling (deprecated)
|
|
75
|
+
if cluster_attrs.scaling_configuration
|
|
76
|
+
scaling_configuration do
|
|
77
|
+
cluster_attrs.scaling_configuration.each do |key, value|
|
|
78
|
+
public_send(key, value)
|
|
79
|
+
end
|
|
80
|
+
end
|
|
81
|
+
end
|
|
82
|
+
|
|
83
|
+
# Serverless v2 scaling
|
|
84
|
+
if cluster_attrs.serverless_v2_scaling_configuration
|
|
85
|
+
serverless_v2_scaling_configuration do
|
|
86
|
+
min_capacity cluster_attrs.serverless_v2_scaling_configuration.min_capacity
|
|
87
|
+
max_capacity cluster_attrs.serverless_v2_scaling_configuration.max_capacity
|
|
88
|
+
end
|
|
89
|
+
end
|
|
90
|
+
|
|
91
|
+
# Point-in-time restore
|
|
92
|
+
if cluster_attrs.restore_to_point_in_time
|
|
93
|
+
restore_to_point_in_time do
|
|
94
|
+
source_cluster_identifier cluster_attrs.restore_to_point_in_time.source_cluster_identifier
|
|
95
|
+
restore_to_time cluster_attrs.restore_to_point_in_time.restore_to_time if cluster_attrs.restore_to_point_in_time.restore_to_time
|
|
96
|
+
use_latest_restorable_time cluster_attrs.restore_to_point_in_time.use_latest_restorable_time if cluster_attrs.restore_to_point_in_time.use_latest_restorable_time
|
|
97
|
+
restore_type cluster_attrs.restore_to_point_in_time.restore_type if cluster_attrs.restore_to_point_in_time.restore_type
|
|
98
|
+
end
|
|
99
|
+
end
|
|
100
|
+
|
|
101
|
+
# Snapshot restore
|
|
102
|
+
snapshot_identifier cluster_attrs.snapshot_identifier if cluster_attrs.snapshot_identifier
|
|
103
|
+
source_region cluster_attrs.source_region if cluster_attrs.source_region
|
|
104
|
+
|
|
105
|
+
# Monitoring and logging
|
|
106
|
+
enabled_cloudwatch_logs_exports cluster_attrs.enabled_cloudwatch_logs_exports if cluster_attrs.enabled_cloudwatch_logs_exports&.any?
|
|
107
|
+
monitoring_interval cluster_attrs.monitoring_interval if cluster_attrs.monitoring_interval > 0
|
|
108
|
+
monitoring_role_arn cluster_attrs.monitoring_role_arn if cluster_attrs.monitoring_role_arn
|
|
109
|
+
performance_insights_enabled cluster_attrs.performance_insights_enabled if cluster_attrs.performance_insights_enabled
|
|
110
|
+
performance_insights_kms_key_id cluster_attrs.performance_insights_kms_key_id if cluster_attrs.performance_insights_kms_key_id
|
|
111
|
+
performance_insights_retention_period cluster_attrs.performance_insights_retention_period if cluster_attrs.performance_insights_enabled
|
|
112
|
+
|
|
113
|
+
# Backtrack (Aurora MySQL only)
|
|
114
|
+
backtrack_window cluster_attrs.backtrack_window if cluster_attrs.backtrack_window
|
|
115
|
+
|
|
116
|
+
# Additional configurations
|
|
117
|
+
apply_immediately cluster_attrs.apply_immediately if cluster_attrs.apply_immediately
|
|
118
|
+
auto_minor_version_upgrade cluster_attrs.auto_minor_version_upgrade
|
|
119
|
+
deletion_protection cluster_attrs.deletion_protection
|
|
120
|
+
skip_final_snapshot cluster_attrs.skip_final_snapshot
|
|
121
|
+
final_snapshot_identifier cluster_attrs.final_snapshot_identifier if cluster_attrs.final_snapshot_identifier
|
|
122
|
+
|
|
123
|
+
# Enable HTTP endpoint for Aurora Serverless
|
|
124
|
+
enable_http_endpoint cluster_attrs.enable_http_endpoint if cluster_attrs.enable_http_endpoint
|
|
125
|
+
|
|
126
|
+
# Apply tags if present
|
|
127
|
+
if cluster_attrs.tags&.any?
|
|
128
|
+
tags do
|
|
129
|
+
cluster_attrs.tags.each do |key, value|
|
|
130
|
+
public_send(key, value)
|
|
131
|
+
end
|
|
132
|
+
end
|
|
133
|
+
end
|
|
134
|
+
end
|
|
135
|
+
|
|
136
|
+
# Return resource reference with available outputs
|
|
137
|
+
ResourceReference.new(
|
|
138
|
+
type: 'aws_rds_cluster',
|
|
139
|
+
name: name,
|
|
140
|
+
resource_attributes: cluster_attrs.to_h,
|
|
141
|
+
outputs: {
|
|
142
|
+
id: "${aws_rds_cluster.#{name}.id}",
|
|
143
|
+
arn: "${aws_rds_cluster.#{name}.arn}",
|
|
144
|
+
cluster_identifier: "${aws_rds_cluster.#{name}.cluster_identifier}",
|
|
145
|
+
cluster_resource_id: "${aws_rds_cluster.#{name}.cluster_resource_id}",
|
|
146
|
+
endpoint: "${aws_rds_cluster.#{name}.endpoint}",
|
|
147
|
+
reader_endpoint: "${aws_rds_cluster.#{name}.reader_endpoint}",
|
|
148
|
+
engine_version_actual: "${aws_rds_cluster.#{name}.engine_version_actual}",
|
|
149
|
+
port: "${aws_rds_cluster.#{name}.port}",
|
|
150
|
+
database_name: "${aws_rds_cluster.#{name}.database_name}",
|
|
151
|
+
master_username: "${aws_rds_cluster.#{name}.master_username}",
|
|
152
|
+
master_user_secret: "${aws_rds_cluster.#{name}.master_user_secret}",
|
|
153
|
+
hosted_zone_id: "${aws_rds_cluster.#{name}.hosted_zone_id}",
|
|
154
|
+
cluster_members: "${aws_rds_cluster.#{name}.cluster_members}",
|
|
155
|
+
availability_zones: "${aws_rds_cluster.#{name}.availability_zones}",
|
|
156
|
+
backup_retention_period: "${aws_rds_cluster.#{name}.backup_retention_period}",
|
|
157
|
+
preferred_backup_window: "${aws_rds_cluster.#{name}.preferred_backup_window}",
|
|
158
|
+
preferred_maintenance_window: "${aws_rds_cluster.#{name}.preferred_maintenance_window}",
|
|
159
|
+
vpc_security_group_ids: "${aws_rds_cluster.#{name}.vpc_security_group_ids}",
|
|
160
|
+
db_subnet_group_name: "${aws_rds_cluster.#{name}.db_subnet_group_name}",
|
|
161
|
+
db_cluster_parameter_group_name: "${aws_rds_cluster.#{name}.db_cluster_parameter_group_name}",
|
|
162
|
+
storage_encrypted: "${aws_rds_cluster.#{name}.storage_encrypted}",
|
|
163
|
+
kms_key_id: "${aws_rds_cluster.#{name}.kms_key_id}"
|
|
164
|
+
},
|
|
165
|
+
computed_properties: {
|
|
166
|
+
engine_family: cluster_attrs.engine_family,
|
|
167
|
+
is_mysql: cluster_attrs.is_mysql?,
|
|
168
|
+
is_postgresql: cluster_attrs.is_postgresql?,
|
|
169
|
+
is_serverless: cluster_attrs.is_serverless?,
|
|
170
|
+
is_global: cluster_attrs.is_global?,
|
|
171
|
+
effective_port: cluster_attrs.effective_port,
|
|
172
|
+
has_enhanced_monitoring: cluster_attrs.has_enhanced_monitoring?,
|
|
173
|
+
has_performance_insights: cluster_attrs.has_performance_insights?,
|
|
174
|
+
has_backtrack: cluster_attrs.has_backtrack?,
|
|
175
|
+
has_http_endpoint: cluster_attrs.has_http_endpoint?,
|
|
176
|
+
supports_backtrack: cluster_attrs.supports_backtrack?,
|
|
177
|
+
supports_global: cluster_attrs.supports_global?,
|
|
178
|
+
supports_serverless_v2: cluster_attrs.supports_serverless_v2?,
|
|
179
|
+
default_cloudwatch_logs_exports: cluster_attrs.default_cloudwatch_logs_exports,
|
|
180
|
+
estimated_monthly_cost: cluster_attrs.estimated_monthly_cost
|
|
181
|
+
}
|
|
182
|
+
)
|
|
183
|
+
end
|
|
184
|
+
end
|
|
185
|
+
end
|
|
186
|
+
end
|
|
@@ -0,0 +1,84 @@
|
|
|
1
|
+
# frozen_string_literal: true
|
|
2
|
+
|
|
3
|
+
# Copyright 2025 The Pangea Authors. Licensed under Apache 2.0.
|
|
4
|
+
|
|
5
|
+
module Pangea
|
|
6
|
+
module Resources
|
|
7
|
+
module AWS
|
|
8
|
+
module Types
|
|
9
|
+
class RdsClusterAttributes < Pangea::Resources::BaseAttributes
|
|
10
|
+
attribute? :cluster_identifier, Resources::Types::String.optional
|
|
11
|
+
attribute? :cluster_identifier_prefix, Resources::Types::String.optional
|
|
12
|
+
attribute? :engine, Resources::Types::String.constrained(included_in: %w[aurora aurora-mysql aurora-postgresql]).optional
|
|
13
|
+
attribute? :engine_version, Resources::Types::String.optional
|
|
14
|
+
attribute :engine_mode, Resources::Types::String.default('provisioned').constrained(included_in: %w[provisioned serverless parallelquery global])
|
|
15
|
+
attribute? :database_name, Resources::Types::String.optional
|
|
16
|
+
attribute? :master_username, Resources::Types::String.optional
|
|
17
|
+
attribute? :master_password, Resources::Types::String.optional
|
|
18
|
+
attribute :manage_master_user_password, Resources::Types::Bool.default(true)
|
|
19
|
+
attribute? :master_user_secret_kms_key_id, Resources::Types::String.optional
|
|
20
|
+
attribute? :db_subnet_group_name, Resources::Types::String.optional
|
|
21
|
+
attribute :vpc_security_group_ids, Resources::Types::Array.of(Resources::Types::String).default([].freeze)
|
|
22
|
+
attribute :availability_zones, Resources::Types::Array.of(Resources::Types::String).default([].freeze)
|
|
23
|
+
attribute? :db_cluster_parameter_group_name, Resources::Types::String.optional
|
|
24
|
+
attribute? :port, Resources::Types::Integer.optional
|
|
25
|
+
attribute :backup_retention_period, Resources::Types::Integer.default(7).constrained(gteq: 1, lteq: 35)
|
|
26
|
+
attribute? :preferred_backup_window, Resources::Types::String.optional
|
|
27
|
+
attribute? :preferred_maintenance_window, Resources::Types::String.optional
|
|
28
|
+
attribute :copy_tags_to_snapshot, Resources::Types::Bool.default(true)
|
|
29
|
+
attribute :storage_encrypted, Resources::Types::Bool.default(true)
|
|
30
|
+
attribute? :kms_key_id, Resources::Types::String.optional
|
|
31
|
+
attribute? :storage_type, Resources::Types::String.optional
|
|
32
|
+
attribute? :allocated_storage, Resources::Types::Integer.optional
|
|
33
|
+
attribute? :iops, Resources::Types::Integer.optional
|
|
34
|
+
attribute? :global_cluster_identifier, Resources::Types::String.optional
|
|
35
|
+
attribute :scaling_configuration, Resources::Types::Hash.default({}.freeze)
|
|
36
|
+
attribute? :serverless_v2_scaling_configuration, ServerlessV2Scaling.optional
|
|
37
|
+
attribute? :restore_to_point_in_time, RestoreToPointInTime.optional
|
|
38
|
+
attribute? :snapshot_identifier, Resources::Types::String.optional
|
|
39
|
+
attribute? :source_region, Resources::Types::String.optional
|
|
40
|
+
attribute :enabled_cloudwatch_logs_exports, Resources::Types::Array.of(Resources::Types::String).default([].freeze)
|
|
41
|
+
attribute :monitoring_interval, Resources::Types::Integer.default(0).constrained(gteq: 0, lteq: 60)
|
|
42
|
+
attribute? :monitoring_role_arn, Resources::Types::String.optional
|
|
43
|
+
attribute :performance_insights_enabled, Resources::Types::Bool.default(false)
|
|
44
|
+
attribute? :performance_insights_kms_key_id, Resources::Types::String.optional
|
|
45
|
+
attribute :performance_insights_retention_period, Resources::Types::Integer.default(7).constrained(gteq: 7, lteq: 731)
|
|
46
|
+
attribute? :backtrack_window, Resources::Types::Integer.optional.constrained(gteq: 0, lteq: 259_200)
|
|
47
|
+
attribute :apply_immediately, Resources::Types::Bool.default(false)
|
|
48
|
+
attribute :auto_minor_version_upgrade, Resources::Types::Bool.default(true)
|
|
49
|
+
attribute :deletion_protection, Resources::Types::Bool.default(false)
|
|
50
|
+
attribute :skip_final_snapshot, Resources::Types::Bool.default(false)
|
|
51
|
+
attribute? :final_snapshot_identifier, Resources::Types::String.optional
|
|
52
|
+
attribute :enable_http_endpoint, Resources::Types::Bool.default(false)
|
|
53
|
+
attribute :tags, Resources::Types::AwsTags.default({}.freeze)
|
|
54
|
+
|
|
55
|
+
def self.new(attributes = {})
|
|
56
|
+
attrs = super(attributes)
|
|
57
|
+
RdsClusterValidation.validate(attrs)
|
|
58
|
+
attrs
|
|
59
|
+
end
|
|
60
|
+
|
|
61
|
+
def engine_family = engine.include?('mysql') || engine == 'aurora' ? 'mysql' : 'postgresql'
|
|
62
|
+
def is_mysql? = engine.include?('mysql') || engine == 'aurora'
|
|
63
|
+
def is_postgresql? = engine.include?('postgresql')
|
|
64
|
+
def is_serverless? = engine_mode == 'serverless'
|
|
65
|
+
def is_global? = engine_mode == 'global' || !global_cluster_identifier.nil?
|
|
66
|
+
def has_enhanced_monitoring? = monitoring_interval.positive?
|
|
67
|
+
def has_performance_insights? = performance_insights_enabled
|
|
68
|
+
def has_backtrack? = backtrack_window&.positive?
|
|
69
|
+
def has_http_endpoint? = enable_http_endpoint
|
|
70
|
+
def effective_port = port || (is_mysql? ? 3306 : 5432)
|
|
71
|
+
def default_cloudwatch_logs_exports = is_mysql? ? %w[audit error general slowquery] : %w[postgresql]
|
|
72
|
+
def supports_backtrack? = is_mysql? && engine_mode == 'provisioned'
|
|
73
|
+
def supports_global? = engine_mode == 'provisioned'
|
|
74
|
+
def supports_serverless_v2? = engine_mode == 'provisioned'
|
|
75
|
+
|
|
76
|
+
def estimated_monthly_cost
|
|
77
|
+
return serverless_v2_scaling_configuration ? "#{serverless_v2_scaling_configuration.estimated_hourly_cost_range} (730 hours/month)" : '~$20-200/month (Aurora Serverless v1)' if is_serverless?
|
|
78
|
+
'Depends on cluster instances (see aws_rds_cluster_instance costs)'
|
|
79
|
+
end
|
|
80
|
+
end
|
|
81
|
+
end
|
|
82
|
+
end
|
|
83
|
+
end
|
|
84
|
+
end
|
|
@@ -0,0 +1,44 @@
|
|
|
1
|
+
# frozen_string_literal: true
|
|
2
|
+
|
|
3
|
+
# Copyright 2025 The Pangea Authors. Licensed under Apache 2.0.
|
|
4
|
+
|
|
5
|
+
module Pangea
|
|
6
|
+
module Resources
|
|
7
|
+
module AWS
|
|
8
|
+
module Types
|
|
9
|
+
module AuroraClusterConfigs
|
|
10
|
+
def self.mysql_development
|
|
11
|
+
{ engine: 'aurora-mysql', engine_mode: 'provisioned', backup_retention_period: 1, skip_final_snapshot: true,
|
|
12
|
+
deletion_protection: false, enabled_cloudwatch_logs_exports: %w[slowquery], tags: { Environment: 'development', Engine: 'aurora-mysql' } }
|
|
13
|
+
end
|
|
14
|
+
|
|
15
|
+
def self.mysql_production
|
|
16
|
+
{ engine: 'aurora-mysql', engine_mode: 'provisioned', backup_retention_period: 14, skip_final_snapshot: false,
|
|
17
|
+
deletion_protection: true, enabled_cloudwatch_logs_exports: %w[audit error general slowquery],
|
|
18
|
+
performance_insights_enabled: true, monitoring_interval: 60, backtrack_window: 259_200, tags: { Environment: 'production', Engine: 'aurora-mysql' } }
|
|
19
|
+
end
|
|
20
|
+
|
|
21
|
+
def self.postgresql_development
|
|
22
|
+
{ engine: 'aurora-postgresql', engine_mode: 'provisioned', backup_retention_period: 1, skip_final_snapshot: true,
|
|
23
|
+
deletion_protection: false, enabled_cloudwatch_logs_exports: %w[postgresql], tags: { Environment: 'development', Engine: 'aurora-postgresql' } }
|
|
24
|
+
end
|
|
25
|
+
|
|
26
|
+
def self.postgresql_production
|
|
27
|
+
{ engine: 'aurora-postgresql', engine_mode: 'provisioned', backup_retention_period: 14, skip_final_snapshot: false,
|
|
28
|
+
deletion_protection: true, enabled_cloudwatch_logs_exports: %w[postgresql],
|
|
29
|
+
performance_insights_enabled: true, monitoring_interval: 60, tags: { Environment: 'production', Engine: 'aurora-postgresql' } }
|
|
30
|
+
end
|
|
31
|
+
|
|
32
|
+
def self.serverless_v2(min_capacity: 0.5, max_capacity: 16.0)
|
|
33
|
+
{ engine: 'aurora-mysql', engine_mode: 'provisioned',
|
|
34
|
+
serverless_v2_scaling_configuration: { min_capacity: min_capacity, max_capacity: max_capacity }, tags: { ServerlessVersion: 'v2' } }
|
|
35
|
+
end
|
|
36
|
+
|
|
37
|
+
def self.global_mysql
|
|
38
|
+
{ engine: 'aurora-mysql', engine_mode: 'global', backup_retention_period: 14, deletion_protection: true, tags: { ClusterType: 'global', Engine: 'aurora-mysql' } }
|
|
39
|
+
end
|
|
40
|
+
end
|
|
41
|
+
end
|
|
42
|
+
end
|
|
43
|
+
end
|
|
44
|
+
end
|
|
@@ -0,0 +1,45 @@
|
|
|
1
|
+
# frozen_string_literal: true
|
|
2
|
+
|
|
3
|
+
# Copyright 2025 The Pangea Authors. Licensed under Apache 2.0.
|
|
4
|
+
|
|
5
|
+
module Pangea
|
|
6
|
+
module Resources
|
|
7
|
+
module AWS
|
|
8
|
+
module Types
|
|
9
|
+
class ServerlessV2Scaling < Pangea::Resources::BaseAttributes
|
|
10
|
+
attribute? :min_capacity, Resources::Types::Float.constrained(gteq: 0.5, lteq: 128).optional
|
|
11
|
+
attribute? :max_capacity, Resources::Types::Float.constrained(gteq: 0.5, lteq: 128).optional
|
|
12
|
+
|
|
13
|
+
def self.new(attributes = {})
|
|
14
|
+
attrs = super(attributes)
|
|
15
|
+
raise Dry::Struct::Error, "min_capacity (#{attrs.min_capacity}) cannot be greater than max_capacity (#{attrs.max_capacity})" if attrs.min_capacity > attrs.max_capacity
|
|
16
|
+
attrs
|
|
17
|
+
end
|
|
18
|
+
|
|
19
|
+
def is_minimal? = min_capacity <= 1.0 && max_capacity <= 2.0
|
|
20
|
+
def is_high_performance? = max_capacity >= 16.0
|
|
21
|
+
def scaling_range = max_capacity - min_capacity
|
|
22
|
+
def estimated_hourly_cost_range = "$#{(min_capacity * 0.12).round(2)}-#{(max_capacity * 0.12).round(2)}/hour"
|
|
23
|
+
end
|
|
24
|
+
|
|
25
|
+
class RestoreToPointInTime < Pangea::Resources::BaseAttributes
|
|
26
|
+
attribute? :source_cluster_identifier, Resources::Types::String.optional
|
|
27
|
+
attribute? :restore_to_time, Resources::Types::String.optional
|
|
28
|
+
attribute :use_latest_restorable_time, Resources::Types::Bool.default(false)
|
|
29
|
+
attribute? :restore_type, Resources::Types::String.optional.constrained(included_in: %w[full-copy copy-on-write])
|
|
30
|
+
|
|
31
|
+
def self.new(attributes = {})
|
|
32
|
+
attrs = super(attributes)
|
|
33
|
+
raise Dry::Struct::Error, "Must specify either 'restore_to_time' or set 'use_latest_restorable_time' to true" if !attrs.use_latest_restorable_time && !attrs.restore_to_time
|
|
34
|
+
raise Dry::Struct::Error, "Cannot specify both 'restore_to_time' and 'use_latest_restorable_time'" if attrs.use_latest_restorable_time && attrs.restore_to_time
|
|
35
|
+
raise Dry::Struct::Error, 'source_cluster_identifier is required for point-in-time restore' unless attrs.source_cluster_identifier
|
|
36
|
+
attrs
|
|
37
|
+
end
|
|
38
|
+
|
|
39
|
+
def uses_latest_time? = use_latest_restorable_time
|
|
40
|
+
def uses_specific_time? = !restore_to_time.nil?
|
|
41
|
+
end
|
|
42
|
+
end
|
|
43
|
+
end
|
|
44
|
+
end
|
|
45
|
+
end
|
|
@@ -0,0 +1,26 @@
|
|
|
1
|
+
# frozen_string_literal: true
|
|
2
|
+
|
|
3
|
+
# Copyright 2025 The Pangea Authors. Licensed under Apache 2.0.
|
|
4
|
+
|
|
5
|
+
module Pangea
|
|
6
|
+
module Resources
|
|
7
|
+
module AWS
|
|
8
|
+
module Types
|
|
9
|
+
module RdsClusterValidation
|
|
10
|
+
def self.validate(attrs)
|
|
11
|
+
raise Dry::Struct::Error, "Cannot specify both 'cluster_identifier' and 'cluster_identifier_prefix'" if attrs.cluster_identifier && attrs.cluster_identifier_prefix
|
|
12
|
+
raise Dry::Struct::Error, "Cannot specify both 'master_password' and 'manage_master_user_password'" if attrs.master_password && attrs.manage_master_user_password
|
|
13
|
+
raise Dry::Struct::Error, "Cannot specify both 'scaling_configuration' and 'serverless_v2_scaling_configuration'" if attrs.scaling_configuration && attrs.serverless_v2_scaling_configuration
|
|
14
|
+
raise Dry::Struct::Error, "Serverless configurations only valid when engine_mode is 'serverless'" if attrs.engine_mode != 'serverless' && (attrs.scaling_configuration.is_a?(Hash) && !attrs.scaling_configuration.empty? || attrs.enable_http_endpoint)
|
|
15
|
+
raise Dry::Struct::Error, 'Backtrack is only supported by Aurora MySQL clusters' if attrs.backtrack_window && !attrs.engine.include?('mysql')
|
|
16
|
+
raise Dry::Struct::Error, "global_cluster_identifier can only be used with engine_mode 'global'" if attrs.global_cluster_identifier && attrs.engine_mode != 'global'
|
|
17
|
+
raise Dry::Struct::Error, 'monitoring_role_arn is required when monitoring_interval > 0' if attrs.monitoring_interval.positive? && !attrs.monitoring_role_arn
|
|
18
|
+
raise Dry::Struct::Error, 'performance_insights_retention_period must be at least 7 days when Performance Insights is enabled' if attrs.performance_insights_enabled && attrs.performance_insights_retention_period < 7
|
|
19
|
+
raise Dry::Struct::Error, 'final_snapshot_identifier is required when skip_final_snapshot is false' if !attrs.skip_final_snapshot && !attrs.final_snapshot_identifier
|
|
20
|
+
raise Dry::Struct::Error, "iops must be specified when storage_type is 'io1'" if attrs.engine_mode == 'provisioned' && attrs.storage_type == 'io1' && !attrs.iops
|
|
21
|
+
end
|
|
22
|
+
end
|
|
23
|
+
end
|
|
24
|
+
end
|
|
25
|
+
end
|
|
26
|
+
end
|
|
@@ -0,0 +1,9 @@
|
|
|
1
|
+
# frozen_string_literal: true
|
|
2
|
+
|
|
3
|
+
# Copyright 2025 The Pangea Authors. Licensed under Apache 2.0.
|
|
4
|
+
|
|
5
|
+
require 'pangea/resources/types'
|
|
6
|
+
require_relative 'types/nested_types'
|
|
7
|
+
require_relative 'types/validation'
|
|
8
|
+
require_relative 'types/attributes'
|
|
9
|
+
require_relative 'types/configs'
|
|
@@ -0,0 +1,93 @@
|
|
|
1
|
+
# frozen_string_literal: true
|
|
2
|
+
# Copyright 2025 The Pangea Authors
|
|
3
|
+
#
|
|
4
|
+
# Licensed under the Apache License, Version 2.0 (the "License");
|
|
5
|
+
# you may not use this file except in compliance with the License.
|
|
6
|
+
# You may obtain a copy of the License at
|
|
7
|
+
#
|
|
8
|
+
# http://www.apache.org/licenses/LICENSE-2.0
|
|
9
|
+
#
|
|
10
|
+
# Unless required by applicable law or agreed to in writing, software
|
|
11
|
+
# distributed under the License is distributed on an "AS IS" BASIS,
|
|
12
|
+
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
13
|
+
# See the License for the specific language governing permissions and
|
|
14
|
+
# limitations under the License.
|
|
15
|
+
|
|
16
|
+
|
|
17
|
+
require 'pangea/resources/base'
|
|
18
|
+
require 'pangea/resources/reference'
|
|
19
|
+
require 'pangea/resources/aws_rds_cluster_endpoint/types'
|
|
20
|
+
require 'pangea/resource_registry'
|
|
21
|
+
|
|
22
|
+
module Pangea
|
|
23
|
+
module Resources
|
|
24
|
+
module AWS
|
|
25
|
+
# Create an AWS RDS Cluster Endpoint with type-safe attributes
|
|
26
|
+
#
|
|
27
|
+
# @param name [Symbol] The resource name
|
|
28
|
+
# @param attributes [Hash] RDS cluster endpoint attributes
|
|
29
|
+
# @return [ResourceReference] Reference object with outputs and computed properties
|
|
30
|
+
def aws_rds_cluster_endpoint(name, attributes = {})
|
|
31
|
+
# Validate attributes using dry-struct
|
|
32
|
+
endpoint_attrs = Types::RdsClusterEndpointAttributes.new(attributes)
|
|
33
|
+
|
|
34
|
+
# Generate terraform resource block via terraform-synthesizer
|
|
35
|
+
resource(:aws_rds_cluster_endpoint, name) do
|
|
36
|
+
cluster_identifier endpoint_attrs.cluster_identifier
|
|
37
|
+
cluster_endpoint_identifier endpoint_attrs.cluster_endpoint_identifier
|
|
38
|
+
custom_endpoint_type endpoint_attrs.custom_endpoint_type
|
|
39
|
+
|
|
40
|
+
# Static members configuration
|
|
41
|
+
if endpoint_attrs.static_members&.any?
|
|
42
|
+
static_members endpoint_attrs.static_members.map(&:db_instance_identifier)
|
|
43
|
+
end
|
|
44
|
+
|
|
45
|
+
# Excluded members configuration
|
|
46
|
+
if endpoint_attrs.excluded_members&.any?
|
|
47
|
+
excluded_members endpoint_attrs.excluded_members.map(&:db_instance_identifier)
|
|
48
|
+
end
|
|
49
|
+
|
|
50
|
+
# Apply tags if present
|
|
51
|
+
if endpoint_attrs.tags&.any?
|
|
52
|
+
tags do
|
|
53
|
+
endpoint_attrs.tags.each do |key, value|
|
|
54
|
+
public_send(key, value)
|
|
55
|
+
end
|
|
56
|
+
end
|
|
57
|
+
end
|
|
58
|
+
end
|
|
59
|
+
|
|
60
|
+
# Return resource reference with available outputs
|
|
61
|
+
ResourceReference.new(
|
|
62
|
+
type: 'aws_rds_cluster_endpoint',
|
|
63
|
+
name: name,
|
|
64
|
+
resource_attributes: endpoint_attrs.to_h,
|
|
65
|
+
outputs: {
|
|
66
|
+
id: "${aws_rds_cluster_endpoint.#{name}.id}",
|
|
67
|
+
arn: "${aws_rds_cluster_endpoint.#{name}.arn}",
|
|
68
|
+
cluster_identifier: "${aws_rds_cluster_endpoint.#{name}.cluster_identifier}",
|
|
69
|
+
cluster_endpoint_identifier: "${aws_rds_cluster_endpoint.#{name}.cluster_endpoint_identifier}",
|
|
70
|
+
custom_endpoint_type: "${aws_rds_cluster_endpoint.#{name}.custom_endpoint_type}",
|
|
71
|
+
endpoint: "${aws_rds_cluster_endpoint.#{name}.endpoint}",
|
|
72
|
+
static_members: "${aws_rds_cluster_endpoint.#{name}.static_members}",
|
|
73
|
+
excluded_members: "${aws_rds_cluster_endpoint.#{name}.excluded_members}",
|
|
74
|
+
tags: "${aws_rds_cluster_endpoint.#{name}.tags}",
|
|
75
|
+
tags_all: "${aws_rds_cluster_endpoint.#{name}.tags_all}"
|
|
76
|
+
},
|
|
77
|
+
computed_properties: {
|
|
78
|
+
is_reader: endpoint_attrs.is_reader?,
|
|
79
|
+
is_writer: endpoint_attrs.is_writer?,
|
|
80
|
+
is_any: endpoint_attrs.is_any?,
|
|
81
|
+
has_static_members: endpoint_attrs.has_static_members?,
|
|
82
|
+
has_excluded_members: endpoint_attrs.has_excluded_members?,
|
|
83
|
+
static_member_db_ids: endpoint_attrs.static_member_db_ids,
|
|
84
|
+
excluded_member_db_ids: endpoint_attrs.excluded_member_db_ids,
|
|
85
|
+
uses_custom_member_config: endpoint_attrs.uses_custom_member_config?,
|
|
86
|
+
configuration_summary: endpoint_attrs.configuration_summary,
|
|
87
|
+
estimated_monthly_cost: endpoint_attrs.estimated_monthly_cost
|
|
88
|
+
}
|
|
89
|
+
)
|
|
90
|
+
end
|
|
91
|
+
end
|
|
92
|
+
end
|
|
93
|
+
end
|
|
@@ -0,0 +1,97 @@
|
|
|
1
|
+
# frozen_string_literal: true
|
|
2
|
+
# Copyright 2025 The Pangea Authors
|
|
3
|
+
#
|
|
4
|
+
# Licensed under the Apache License, Version 2.0 (the "License");
|
|
5
|
+
# you may not use this file except in compliance with the License.
|
|
6
|
+
# You may obtain a copy of the License at
|
|
7
|
+
#
|
|
8
|
+
# http://www.apache.org/licenses/LICENSE-2.0
|
|
9
|
+
#
|
|
10
|
+
# Unless required by applicable law or agreed to in writing, software
|
|
11
|
+
# distributed under the License is distributed on an "AS IS" BASIS,
|
|
12
|
+
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
13
|
+
# See the License for the specific language governing permissions and
|
|
14
|
+
# limitations under the License.
|
|
15
|
+
|
|
16
|
+
module Pangea
|
|
17
|
+
module Resources
|
|
18
|
+
module AWS
|
|
19
|
+
module Types
|
|
20
|
+
# Common RDS Cluster Endpoint configurations
|
|
21
|
+
module RdsClusterEndpointConfigs
|
|
22
|
+
# Read-only endpoint for reporting and analytics
|
|
23
|
+
def self.read_replica_endpoint(cluster_id:, endpoint_id: "read-replica")
|
|
24
|
+
{
|
|
25
|
+
cluster_identifier: cluster_id,
|
|
26
|
+
cluster_endpoint_identifier: endpoint_id,
|
|
27
|
+
custom_endpoint_type: "READER",
|
|
28
|
+
tags: { Purpose: "read-replica", Usage: "analytics" }
|
|
29
|
+
}
|
|
30
|
+
end
|
|
31
|
+
|
|
32
|
+
# Custom reader endpoint excluding specific instances
|
|
33
|
+
def self.analytics_endpoint(cluster_id:, excluded_db_instances: [], endpoint_id: "analytics")
|
|
34
|
+
excluded_members = excluded_db_instances.map { |db_id| { db_instance_identifier: db_id } }
|
|
35
|
+
|
|
36
|
+
{
|
|
37
|
+
cluster_identifier: cluster_id,
|
|
38
|
+
cluster_endpoint_identifier: endpoint_id,
|
|
39
|
+
custom_endpoint_type: "READER",
|
|
40
|
+
excluded_members: excluded_members,
|
|
41
|
+
tags: { Purpose: "analytics", Type: "custom-reader" }
|
|
42
|
+
}
|
|
43
|
+
end
|
|
44
|
+
|
|
45
|
+
# Static reader endpoint with specific instances
|
|
46
|
+
def self.dedicated_reader_endpoint(cluster_id:, static_db_instances:, endpoint_id: "dedicated-reader")
|
|
47
|
+
static_members = static_db_instances.map { |db_id| { db_instance_identifier: db_id } }
|
|
48
|
+
|
|
49
|
+
{
|
|
50
|
+
cluster_identifier: cluster_id,
|
|
51
|
+
cluster_endpoint_identifier: endpoint_id,
|
|
52
|
+
custom_endpoint_type: "READER",
|
|
53
|
+
static_members: static_members,
|
|
54
|
+
tags: { Purpose: "dedicated-reader", Type: "static-members" }
|
|
55
|
+
}
|
|
56
|
+
end
|
|
57
|
+
|
|
58
|
+
# Any endpoint for connection pooling
|
|
59
|
+
def self.pooled_endpoint(cluster_id:, endpoint_id: "pooled")
|
|
60
|
+
{
|
|
61
|
+
cluster_identifier: cluster_id,
|
|
62
|
+
cluster_endpoint_identifier: endpoint_id,
|
|
63
|
+
custom_endpoint_type: "ANY",
|
|
64
|
+
tags: { Purpose: "connection-pooling", Type: "any" }
|
|
65
|
+
}
|
|
66
|
+
end
|
|
67
|
+
|
|
68
|
+
# Development/testing endpoint
|
|
69
|
+
def self.development_endpoint(cluster_id:, endpoint_id: "dev")
|
|
70
|
+
{
|
|
71
|
+
cluster_identifier: cluster_id,
|
|
72
|
+
cluster_endpoint_identifier: endpoint_id,
|
|
73
|
+
custom_endpoint_type: "READER",
|
|
74
|
+
tags: { Environment: "development", Purpose: "testing" }
|
|
75
|
+
}
|
|
76
|
+
end
|
|
77
|
+
|
|
78
|
+
# Regional failover endpoint
|
|
79
|
+
def self.failover_endpoint(cluster_id:, excluded_primary: nil, endpoint_id: "failover")
|
|
80
|
+
config = {
|
|
81
|
+
cluster_identifier: cluster_id,
|
|
82
|
+
cluster_endpoint_identifier: endpoint_id,
|
|
83
|
+
custom_endpoint_type: "READER",
|
|
84
|
+
tags: { Purpose: "failover", Type: "disaster-recovery" }
|
|
85
|
+
}
|
|
86
|
+
|
|
87
|
+
if excluded_primary
|
|
88
|
+
config[:excluded_members] = [{ db_instance_identifier: excluded_primary }]
|
|
89
|
+
end
|
|
90
|
+
|
|
91
|
+
config
|
|
92
|
+
end
|
|
93
|
+
end
|
|
94
|
+
end
|
|
95
|
+
end
|
|
96
|
+
end
|
|
97
|
+
end
|