avatarTeri Radichel

Free AI web copilot to create summaries, insights and extended knowledge, download it at here

638

Abstract

。打過你才知道弱點,打是為了實踐,然後回去再練,把實力提高。能戰才能和,沒實力的人談和平只是空談。過去兩個多月,美帝安靜了一陣子,有政評說別指望侵侵,但回看就知道美帝在籌備。真打的人廢話少說,他們在思考怎打能減低損傷,增加勝選和效率。直至出手時,才連連出招,把你嚇壞。</p><p id="827b">說對方瘋狂的,是你一直心存僥倖,以為自己有14億人他怎敢打我?根本連拳架都沒擺好,到對方出手時,慌張失態。因為見過太多練國術練到患精神病(我也練國術),反而對此惡習熟悉,並不意外。</p><p id="0120">香港人沒有在武力上打贏的實力,一邊打一邊走國際戰線,將國際公敵在世界前曝光是聰明之舉,只苦了前線手足和牢內朋友。自己團結不夠,就團結全世界。如果團結全世界還不夠,再團結國內人民,別認為沒可能。一年前我們也沒有料到有今天。如果防火牆一旦拆去,事情演變只會更快。</p><p id="a9bf">戲再好看,香港人夾在其間,也不會好過。香檳不妨多買,但離真正重光還有好一段日子。請萬千照顧好自己。</p><blockquote id="1f0b"><p>(*圖:練京劇雜耍的成虫接受訪問時,竟然話全盛時期自己好打過真正的武術家李小龍,足見最厲害的中國功夫,那把嘴練到家了。李小龍能寫武術及哲學書,但真正打鬥時,決勝負只有一兩秒之間,就把你打爆了。吹水完了再講。)</p></blockquote> <figure id="5a88">

Options

 <div>
          <div>
            <img class="ratio" src="http://placehold.it/16x9">
            <iframe class="" src="https://cdn.embedly.com/widgets/media.html?src=https%3A%2F%2Fbutton.like.co%2Fin%2Fembed%2Fsbho930%2Fbutton&amp;display_name=LikeCoin&amp;url=https%3A%2F%2Fbutton.like.co%2Fin%2Flike%2Fsbho930&amp;image=https%3A%2F%2Fstatic.like.co%2Flikecoin_de-portrait.jpg&amp;key=a19fcc184b9711e1b4764040d3dc5c07&amp;type=text%2Fhtml&amp;schema=like" allowfullscreen="" frameborder="0" height="212" width="485">
          </div>
        </div>
    </figure></iframe></div></div></figure></article></body>

An error occurred (ValidationError) when calling the CreateChangeSet operation: Template format error: Resource name batch_job_admin_group is non alphanumeric.

AWS Naming Conventions…again…CloudFormation

~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~

⚙️ Check out my series on Automating Cybersecurity Metrics | Code.

🔒 Related Stories: Bugs | AWS Security | Secure Code

💻 Free Content on Jobs in Cybersecurity | ✉️ Sign up for the Email List

~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~

Apparently no names in CloudFormation can contain underscores. I don’t love camel case but that would work. In this case the problem was with one of my resource names.

So this:

Resources:
  batch_job_admin_group:
    Type: AWS::IAM::Group
    Properties:
      GroupName: !Ref group_name_param

Became this:

Resources:
  batchjobadmingroup:
    Type: AWS::IAM::Group
    Properties:
      GroupName: !Ref group_name_param

Just name everything on AWS all lowercase no spaces no underscores no dashes and no numbers. That should work. I think.

Follow for updates.

Teri Radichel | © 2nd Sight Lab 2022

About Teri Radichel:
~~~~~~~~~~~~~~~~~~~~
⭐️ Author: Cybersecurity Books
⭐️ Presentations: Presentations by Teri Radichel
⭐️ Recognition: SANS Award, AWS Security Hero, IANS Faculty
⭐️ Certifications: SANS ~ GSE 240
⭐️ Education: BA Business, Master of Software Engineering, Master of Infosec
⭐️ Company: Penetration Tests, Assessments, Phone Consulting ~ 2nd Sight Lab
Need Help With Cybersecurity, Cloud, or Application Security?
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
🔒 Request a penetration test or security assessment
🔒 Schedule a consulting call
🔒 Cybersecurity Speaker for Presentation
Follow for more stories like this:
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ 
❤️ Sign Up my Medium Email List
❤️ Twitter: @teriradichel
❤️ LinkedIn: https://www.linkedin.com/in/teriradichel
❤️ Mastodon: @teriradichel@infosec.exchange
❤️ Facebook: 2nd Sight Lab
❤️ YouTube: @2ndsightlab
Cloudformation
Error Message
Resources
Naming Conventions
Validationerror
Recommended from ReadMedium