Skip to content

Commit 2f4a3b5

Browse files
save file
1 parent c5a4634 commit 2f4a3b5

File tree

1 file changed

+82
-16
lines changed

1 file changed

+82
-16
lines changed

blog/25-07-29/gcloud-create-service-account/gcloud-create-service-account.html

Lines changed: 82 additions & 16 deletions
Original file line numberDiff line numberDiff line change
@@ -1,37 +1,103 @@
11

22

3+
<!DOCTYPE html>
34

45
<html>
56

6-
77
<head>
8-
8+
<meta charset=utf-8>
99

10-
<title></title>
11-
12-
<base href='https://javascript-2020.github.io/blog/29-07-25/gcloud-create-service-account/gcloud-create-service-account.html'>
10+
<title>
11+
gcloud Create Service Account
12+
</title>
1313

14+
<meta name=description content='Learn how to create a Google Cloud service account using the gcloud CLI and REST API. This step-by-step guide covers setting roles, generating keys, and securing access for automated deployments.'>
1415
<link rel=icon type='image/png' href='/blog/image/blog-30.png'>
16+
<meta name=viewport content='width=device-width, initial-scale=1'>
17+
18+
<base href='https://javascript-2020.github.io/blog/25-07-29/gcloud-create-service-account/'>
19+
<link rel=canonical href='https://ext-code.com/blog/25-07-29/gcloud-create-service-account/gcloud-create-service-account.html'>
20+
21+
22+
<script src='https://libs.ext-code.com/js/dom/component/component.js'></script>
23+
<script src='https://libs.ext-code.com/js/dom/init-hdr/init-hdr.js'></script>
24+
1525

1626
<link rel=stylesheet href='/blog/css/blog.css'>
1727

28+
<style>
29+
30+
html
31+
{height:100%;font-family:arial}
32+
body
33+
{min-height:calc(100% - 40px);display:flex;flex-direction:column;gap:20px;margin:20px;align-items:center;
34+
padding-bottom:200px;
35+
}
36+
body>*
37+
{max-width:1400px;width:100%;padding:0 20px;}
38+
39+
[component]
40+
{display:none}
41+
42+
.description
43+
{max-width:1000px;text-align:justify;border-left:4px solid #4a90e2;padding:1rem;
44+
background-color:#f9f9f9;font-family:system-ui,sans-serif;font-size:1rem;line-height:1.6;color:#333}
45+
.description>p
46+
{margin:0}
47+
.description > p+p
48+
{margin:10px 0}
49+
50+
code
51+
{font-family:monospace;background:whitesmoke}
52+
code.inline
53+
{display:inline;padding:5px 10px}
54+
55+
a
56+
{color:#4a90e2;text-decoration:none;font-weight:500}
57+
a:hover
58+
{text-decoration:underline}
59+
.link-domain
60+
{font-size:0.85rem;color:#777;margin-left:0.25rem}
61+
.link-domain::before
62+
{content:'['}
63+
.link-domain::after
64+
{content:']'}
65+
.link-txt
66+
{}
67+
68+
input
69+
{font-size:16px;padding:5px 7px;box-sizing:border-box;}
70+
input[type=button]
71+
{cursor:pointer}
72+
73+
74+
75+
pre
76+
{background:whitesmoke;border:1px solid gray;padding:10px;font-size:16px}
77+
78+
79+
</style>
1880

1981
</head>
2082

2183

2284
<body>
2385

24-
25-
26-
<h3>
27-
gcloud create service account
28-
</h3>
29-
30-
31-
<div id=desc>
32-
33-
gcloud create service account
34-
86+
<blog-hdr component=grp1 v2.0>
87+
<h1 class=title>
88+
gcloud Create Service Account
89+
</h1>
90+
<time slot=date datetime=2025-10-22>
91+
22 Oct 2025
92+
</time>
93+
</blog-hdr>
94+
95+
96+
<div class=description>
97+
<p>
98+
Learn how to create a Google Cloud service account using the gcloud CLI and REST API. This step-by-step guide covers setting roles,
99+
generating keys, and securing access for automated deployments.
100+
</p>
35101
</div>
36102

37103

0 commit comments

Comments
 (0)