Terraform的配置內容是以Terraform語言撰寫,簡介如下。
網頁
▼
2021/10/30
2021/10/29
2021/10/28
PostgreSQL 識別名稱最大長度 identifier name max length
PostgreSQL識別名稱(identifier name),也就是資料庫、資料表、欄位、索引等的名稱,的最大長度限制為63 bytes。
AWS 允許IAM使用者存取帳單資訊 grant IAM user access billing
AWS預設只有root user才能存取帳單資訊(Billing),IAM user無法存取。開啟IAM user也能存取帳單資訊的方式如下。
2021/10/27
2021/10/26
AWS EC2 Amazon Linux 2 預設使用者名稱 default user account name
AWS EC2 Amazon Linux 2/Linux AMI instance的預設使用者名稱為ec2-user
。
2021/10/25
Golang 連線到AWS RDS Aurora MySQL cluster 帳號密碼認證 connect to aws rds mysql aurora cluster auth by username and password
Go連線到AWS RDS Aurora MySQL cluster,使用資料庫帳號密碼驗證(非IAM驗證)。
Golang 連線到AWS RDS MySQL資料庫 帳號密碼認證 connect to aws rds mysql instance auth by username and password
Go連線到AWS RDS MySQL資料庫實例,使用資料庫帳號密碼驗證(非IAM驗證)。
2021/10/23
2021/10/21
AWS RDS 無法從本機連線 unable to connect from localhost client
AWS RDS建立資料庫後,無法從本機(localhost)客戶端連線到資料庫的解決方式如下。
2021/10/20
2021/10/19
2021/10/18
2021/10/17
2021/10/16
2021/10/15
AWS IAM AdministratorAccess 管理權限政策 admin policy
AWS建議應使用IAM user來管理AWS服務/資源,避免以root user進行日常的AWS管理操作來提升帳戶的安全性,通常在註冊新的AWS帳戶後第一件事就是建立一個有管理權限的IAM user,其權限幾乎同root user。
2021/10/14
2021/10/13
2021/10/11
2021/10/10
2021/10/9
2021/10/7
2021/10/6
2021/10/3
2021/10/2
Golang 從http.Request取得URL參數 get url query string
Go 從http網頁伺服器接收的請求http.Request
取得url參數(query string)的方式如下。