cool-egg-852
04/01/2020, 2:45 PMClusterAddonsConfig
under Supporting Types
. Some of the descriptions start with .
cool-egg-852
04/01/2020, 2:46 PMcool-egg-852
04/01/2020, 2:49 PMstring?
for example would look more like a question than a nullable string as the type.cool-egg-852
04/01/2020, 2:51 PMConfiguration for the Google Groups for GKE feature. Structure is documented below.
on https://www.pulumi.com/docs/reference/pkg/gcp/container/cluster/#clusteraddonsconfig should be changed to a link or something. Documented below
implies having to scroll down to find it somewhere.cool-egg-852
04/01/2020, 2:53 PMcool-egg-852
04/01/2020, 2:54 PMcool-egg-852
04/01/2020, 2:56 PMreate a Cluster
given that is exactly what the example is?
For example, there should be an example of Look up an Existing Cluster Resource
in it’s section.cool-egg-852
04/01/2020, 2:58 PMistio_config
is TF not pulumi’s naming scheme. Also, why is it mentioning disabled = false and such here? It should only be describing the section IMO.stocky-island-3676
04/03/2020, 1:59 PMinterface
properties are missing. At least in `pulumi-aws`.boundless-airport-99052
04/09/2020, 9:55 AMwhite-airport-48392
04/13/2020, 6:55 AMgreen-morning-1318
04/30/2020, 7:10 PMbroad-dog-22463
04/30/2020, 7:46 PMgreen-morning-1318
04/30/2020, 7:46 PMgreen-morning-1318
04/30/2020, 7:46 PMgreen-morning-1318
04/30/2020, 7:46 PMlimited-rainbow-51650
05/05/2020, 3:01 PMbroad-dog-22463
05/05/2020, 3:46 PMbroad-dog-22463
05/05/2020, 3:47 PMfuture-air-70511
05/05/2020, 10:10 PMgorgeous-elephant-23271
06/08/2020, 5:14 PM<docker://pulumi/actions>
step, but when it runs, the PWD doesnt appear to be the repository root.
I'm running on a self-hosted agent in a docker container, so not sure if thats messing with anything?gorgeous-elephant-23271
06/08/2020, 5:15 PMcurved-ghost-20494
06/12/2020, 3:30 PMpulumi up
on a machine? Maybe not... I'm also having trouble with pulumi/actions as it happens, specifically pushing Docker images to GCR.iochilly-hairdresser-56259
06/15/2020, 6:12 PMshy-waiter-84958
07/31/2020, 3:51 PMOperator '<' cannot be applied to types 'number' and 'OutputInstance<number>'
witty-ice-69000
08/13/2020, 6:00 PMget_policy_document
, like this:
instance_assume_role_policy = iam.get_policy_document(
opts=pulumi.ResourceOptions(depends_on=[user], provider=provider),
statements=[
{
"actions": ["sts:AssumeRole"],
"effect": "Allow",
"principals": [
{"identifiers": [user.arn.apply(lambda arn: arn)], "type": "AWS"}
],
},
],
)
But I get this error:
error: Program failed with an unhandled exception:
error: Traceback (most recent call last):
File "/usr/local/bin/pulumi-language-python-exec", line 85, in <module>
loop.run_until_complete(coro)
File "/usr/local/Cellar/python@3.8/3.8.5/Frameworks/Python.framework/Versions/3.8/lib/python3.8/asyncio/base_events.py", line 616, in run_until_complete
return future.result()
File ".venv/lib/python3.8/site-packages/pulumi/runtime/stack.py", line 83, in run_in_stack
await run_pulumi_func(lambda: Stack(func))
File ".venv/lib/python3.8/site-packages/pulumi/runtime/stack.py", line 51, in run_pulumi_func
await RPC_MANAGER.rpcs.pop()
File ".venv/lib/python3.8/site-packages/pulumi/runtime/stack.py", line 35, in run_pulumi_func
func()
File ".venv/lib/python3.8/site-packages/pulumi/runtime/stack.py", line 83, in <lambda>
await run_pulumi_func(lambda: Stack(func))
File ".venv/lib/python3.8/site-packages/pulumi/runtime/stack.py", line 106, in __init__
func()
File "/usr/local/bin/pulumi-language-python-exec", line 84, in <lambda>
coro = pulumi.runtime.run_in_stack(lambda: runpy.run_path(args.PROGRAM, run_name='__main__'))
File "/usr/local/Cellar/python@3.8/3.8.5/Frameworks/Python.framework/Versions/3.8/lib/python3.8/runpy.py", line 282, in run_path
return _run_code(code, mod_globals, init_globals,
File "/usr/local/Cellar/python@3.8/3.8.5/Frameworks/Python.framework/Versions/3.8/lib/python3.8/runpy.py", line 87, in _run_code
exec(code, run_globals)
File "./__main__.py", line 41, in <module>
main()
File "./__main__.py", line 37, in main
create_stack_deployment_iam(this_provider, "production", permission_boundaries)
File "/asi/aws/infrastructure.py", line 62, in create_stack_deployment_iam
instance_assume_role_policy = iam.get_policy_document(
File ".venv/lib/python3.8/site-packages/pulumi_aws/iam/get_policy_document.py", line 317, in get_policy_document
__ret__ = pulumi.runtime.invoke('aws:iam/getPolicyDocument:getPolicyDocument', __args__, opts=opts).value
File ".venv/lib/python3.8/site-packages/pulumi/runtime/invoke.py", line 127, in invoke
return InvokeResult(_sync_await(asyncio.ensure_future(do_rpc())))
File ".venv/lib/python3.8/site-packages/pulumi/runtime/sync_await.py", line 95, in _sync_await
return fut.result()
File ".venv/lib/python3.8/site-packages/pulumi/runtime/invoke.py", line 124, in do_rpc
raise exn
File ".venv/lib/python3.8/site-packages/pulumi/runtime/rpc_manager.py", line 67, in rpc_wrapper
result = await rpc
File ".venv/lib/python3.8/site-packages/pulumi/runtime/invoke.py", line 108, in do_invoke
resp = await asyncio.get_event_loop().run_in_executor(None, do_invoke)
File "/usr/local/Cellar/python@3.8/3.8.5/Frameworks/Python.framework/Versions/3.8/lib/python3.8/concurrent/futures/thread.py", line 57, in run
result = self.fn(*self.args, **self.kwargs)
File ".venv/lib/python3.8/site-packages/pulumi/runtime/invoke.py", line 106, in do_invoke
raise Exception(details)
Exception: invocation of aws:iam/getPolicyDocument:getPolicyDocument returned an error: grpc: error while marshaling: proto: repeated field Values has nil element
error: an unhandled error occurred: Program exited with non-zero exit code: 1
witty-ice-69000
08/13/2020, 6:00 PMfresh-lifeguard-12682
08/22/2020, 1:54 AMcurved-cartoon-90054
09/22/2020, 10:17 PMsteps:
mkdir policypack && cd policypack
pulumi policy new aws-python
pulumi preview --policy-pack <path-to-policy-pack-directory>
faint-eye-21524
10/09/2020, 2:12 AM