Skip to content

Commit

Permalink
fix sql error blocking depolyment. End to end test (#952)
Browse files Browse the repository at this point in the history
* fix sql error blocking depolyment. End to end test

* fix text
  • Loading branch information
tomcoombs-aws authored Sep 26, 2024
1 parent 9fe5934 commit cc94e5e
Showing 1 changed file with 4 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -1126,16 +1126,16 @@ dashboards:
Computations: []
CustomNarrative:
Narrative: "<narrative>\n To achieve our goal of powering our operations\
\ with 100% renewable energy by\n <inline color=\"#ffb91e\">2025</inline>\n\
\ with 100% renewable energy by \n <inline color=\"#ffb91e\">2025</inline>\n\
\ \u2014five years ahead of our original 2030 target\u2014Amazon contracts\
\ for renewable power from utility scale wind and solar projects that\
\ add clean energy to the grid. These new renewable projects support hundreds\
\ of jobs while providing hundreds of millions of dollars of investment\
\ in local communities. We also may choose to support these grids through\
\ the purchase of environmental attributes, like Renewable Energy Certificates\
\ and Guarantees of Origin, in line with our\n <a href=\"https://sustainability.aboutamazon.com/renewable-energy-methodology.pdf\"\
\ and Guarantees of Origin, in line with our \n <a href=\"https://sustainability.aboutamazon.com/renewable-energy-methodology.pdf\"\
\ target=\"_self\">Renewable Energy Methodology</a>\n .\n <br/>\n As\
\ a result, in\n <inline color=\"#e2ff18\">2023</inline>\n , the electricity\
\ a result, in \n <inline color=\"#e2ff18\">2023</inline>\n , the electricity\
\ consumed in the following 22 AWS Regions was attributable to 100% renewable\
\ energy:\n <br/>\n <br/>\n <ul>\n <li>U.S. East (Northern Virginia)</li>\n\
\ <li>GovCloud (U.S. East)</li>\n <li>U.S. East (Ohio)</li>\n \
Expand Down Expand Up @@ -4617,7 +4617,7 @@ views:
(("${athena_database_name}"."${cur_table_name}" cur
LEFT JOIN TAG_KPI_PER_DAY susTag ON ((cur.line_item_usage_start_date = susTag.line_item_usage_start_date) AND (${tag} = susTag.tagValue)))
LEFT JOIN ACC_KPI_PER_DAY susAcc ON ((cur.line_item_usage_start_date = susAcc.line_item_usage_start_date) AND (cur.line_item_usage_account_id = susAcc.linkedaccountvalue)))
WHERE ((("line_item_operation" LIKE '%Storage%') AND (("line_item_product_code" LIKE '%AmazonGlacier%') OR ("line_item_product_code" LIKE '%AmazonS3%'))) AND ((cur.bill_billing_period_start_date >= (DATE_TRUNC('month', current_timestamp) - INTERVAL
WHERE ((("line_item_operation" LIKE '%Storage%') AND (("line_item_product_code" LIKE '%AmazonGlacier%') OR ("line_item_product_code" LIKE '%AmazonS3%'))) AND ((cur.bill_billing_period_start_date >= (DATE_TRUNC('month', current_timestamp) - INTERVAL '7'
MONTH)) AND (CAST(CONCAT(cur.year, '-', cur.month, '-01') AS date) >= (DATE_TRUNC('month', current_date) - INTERVAL '7' MONTH))))
GROUP BY 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16
parameters:
Expand Down

0 comments on commit cc94e5e

Please sign in to comment.