File tree 6 files changed +27
-27
lines changed
aws-yaml-ansible-wordpress
azure-yaml-container-apps
6 files changed +27
-27
lines changed Original file line number Diff line number Diff line change @@ -33,13 +33,13 @@ config:
33
33
variables :
34
34
# Dynamically fetch AZs so we can spread across them.
35
35
availabilityZones :
36
- Fn::Invoke :
37
- Function : aws:getAvailabilityZones
36
+ fn::invoke :
37
+ function : aws:getAvailabilityZones
38
38
# Dynamically query for the Amazon Linux 2 AMI in this region.
39
39
awsLinuxAmi :
40
- Fn::Invoke :
41
- Function : aws:ec2:getAmi
42
- Arguments :
40
+ fn::invoke :
41
+ function : aws:ec2:getAmi
42
+ arguments :
43
43
owners : ["amazon"]
44
44
filters :
45
45
- name : name
Original file line number Diff line number Diff line change @@ -3,15 +3,15 @@ runtime: yaml
3
3
description : An EKS cluster
4
4
variables :
5
5
vpcId :
6
- Fn::Invoke :
7
- Function : aws:ec2:getVpc
8
- Arguments :
6
+ fn::invoke :
7
+ function : aws:ec2:getVpc
8
+ arguments :
9
9
default : true
10
10
Return : id
11
11
subnetIds :
12
- Fn::Invoke :
13
- Function : aws:ec2:getSubnetIds
14
- Arguments :
12
+ fn::invoke :
13
+ function : aws:ec2:getSubnetIds
14
+ arguments :
15
15
vpcId : ${vpcId}
16
16
Return : ids
17
17
resources :
Original file line number Diff line number Diff line change 7
7
default : pulumi
8
8
variables :
9
9
blobAccessToken :
10
- Fn::Invoke :
11
- Function : azure-native:storage:listStorageAccountServiceSAS
12
- Arguments :
10
+ fn::invoke :
11
+ function : azure-native:storage:listStorageAccountServiceSAS
12
+ arguments :
13
13
accountName : ${sa.name}
14
14
protocols : https
15
15
sharedAccessStartTime : ' 2022-01-01'
Original file line number Diff line number Diff line change @@ -7,23 +7,23 @@ config:
7
7
default : pulumi
8
8
variables :
9
9
sharedKey :
10
- Fn::Invoke :
11
- Function : azure-native:operationalinsights:getSharedKeys
12
- Arguments :
10
+ fn::invoke :
11
+ function : azure-native:operationalinsights:getSharedKeys
12
+ arguments :
13
13
resourceGroupName : ${resourceGroup.name}
14
14
workspaceName : ${workspace.name}
15
15
Return : primarySharedKey
16
16
adminUsername :
17
- Fn::Invoke :
18
- Function : azure-native:containerregistry:listRegistryCredentials
19
- Arguments :
17
+ fn::invoke :
18
+ function : azure-native:containerregistry:listRegistryCredentials
19
+ arguments :
20
20
resourceGroupName : ${resourceGroup.name}
21
21
registryName : ${registry.name}
22
22
Return : username
23
23
adminPasswords :
24
- Fn::Invoke :
25
- Function : azure-native:containerregistry:listRegistryCredentials
26
- Arguments :
24
+ fn::invoke :
25
+ function : azure-native:containerregistry:listRegistryCredentials
26
+ arguments :
27
27
resourceGroupName : ${resourceGroup.name}
28
28
registryName : ${registry.name}
29
29
Return : passwords
Original file line number Diff line number Diff line change 27
27
"Properties" : {
28
28
"instanceType" : " ${InstanceType}" ,
29
29
"ami" : {
30
- "Fn::Invoke " : {
30
+ "fn::invoke " : {
31
31
"Function" : " aws:getAmi" ,
32
32
"Arguments" : {
33
33
"filters" : [
Original file line number Diff line number Diff line change 7
7
default : t3.micro
8
8
variables :
9
9
ec2ami :
10
- Fn::Invoke :
11
- Function : aws:getAmi
12
- Arguments :
10
+ fn::invoke :
11
+ function : aws:getAmi
12
+ arguments :
13
13
filters :
14
14
- name : name
15
15
values : ["amzn-ami-hvm-*-x86_64-ebs"]
You can’t perform that action at this time.
0 commit comments